🔨 Refactors add-on to use Hassio ports on the host network

This commit is contained in:
Franck Nijhof 2019-04-22 11:01:01 +02:00
parent 43b28dce8c
commit 327d29fdd9
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 7 additions and 4 deletions

View file

@ -16,21 +16,24 @@
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"homeassistant_api": false,
"host_network": true,
"ports": {
"8072/tcp": 8072
},
"ports_description": {
"8072/tcp": "Traccar web interface"
},
"map": [
"config:rw",
"ssl"
],
"options": {
"port": 8072,
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"port": "port",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"

View file

@ -20,5 +20,5 @@ if bashio::config.true 'ssl'; then
sed -i "s/%%keyfile%%/${keyfile}/g" /etc/nginx/nginx.conf
fi
port=$(bashio::config 'port')
port=$(bashio::addon.port 8072)
sed -i "s/%%port%%/${port}/g" /etc/nginx/nginx.conf