changed proxy config

This commit is contained in:
Qballjos 2021-04-01 19:00:13 +02:00
parent a1e80f6438
commit f6581d93bd
1 changed files with 13 additions and 2 deletions

View File

@ -2287,6 +2287,13 @@
"logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/proxy_mgr.png", "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/proxy_mgr.png",
"name": "nginx-proxy-manager", "name": "nginx-proxy-manager",
"platform": "linux", "platform": "linux",
"env": [
{
"label": "DB_SQLITE_FILE",
"name": "DB_SQLITE_FILE",
"set": "/data/database.sqlite"
}
],
"ports": [ "ports": [
"80:8080/tcp", "80:8080/tcp",
"81:8181/tcp", "81:8181/tcp",
@ -2297,8 +2304,12 @@
"type": 1, "type": 1,
"volumes": [ "volumes": [
{ {
"bind": "/portainer/Files/AppData/Config/Nginx-Proxy", "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/data",
"container": "/config" "container": "/data"
},
{
"bind": "/portainer/Files/AppData/Config/Nginx-Proxy/letsencrypt",
"container": "/etc/letsencrypt"
} }
] ]
}, },