mirror of
https://github.com/hassio-addons/addon-traccar.git
synced 2025-05-04 19:11:31 +00:00
🔨 Refactors add-on to use Hassio ports on the host network
This commit is contained in:
parent
43b28dce8c
commit
327d29fdd9
2 changed files with 7 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue