We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52c155a + 7cc8728 commit 3f40e4dCopy full SHA for 3f40e4d
proxy-manager/config.json
@@ -20,7 +20,7 @@
20
"boot": "auto",
21
"hassio_api": true,
22
"hassio_role": "default",
23
- "map": ["ssl:rw"],
+ "map": ["ssl:rw","share:ro"],
24
"options": {},
25
"schema": {
26
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?"
proxy-manager/rootfs/etc/cont-init.d/npm.sh
@@ -90,6 +90,12 @@ fi
90
91
ln -sf /ssl/nginxproxymanager /etc/letsencrypt
92
93
+if bashio::fs.directory_exists "/share/npm"; then
94
+ bashio::log.info "Adding link to /share/npm for custom config files"
95
+ rm -f /data/nginx/custom || true
96
+ ln -sf /share/npm /data/nginx/custom
97
+fi
98
+
99
# NGinx needs this file to be able to start.
100
# It will not continously log into it.
101
mkdir -p /var/lib/nginx/logs
0 commit comments