mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(reverse-proxy): 🐛 rm port env vars for now
ref https://github.com/docker/compose/pull/1765
This commit is contained in:
parent
08bae1eb19
commit
240194eec1
3 changed files with 2 additions and 5 deletions
3
.env
3
.env
|
|
@ -1,6 +1,3 @@
|
|||
REVERSE_PROXY_HOST_PORT_HTTP=8080
|
||||
REVERSE_PROXY_HOST_PORT_HTTPS=
|
||||
|
||||
ARCHIVAL_APPLICATION_INSIGHTS_SERVER_TELEMETRY_CHANNEL_STORAGE_PATH=application-insights
|
||||
ARCHIVAL_GIT_REPOSITORY_PATH=archives
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ version: "3.7"
|
|||
services:
|
||||
reverse-proxy:
|
||||
ports:
|
||||
- "${REVERSE_PROXY_HOST_PORT_HTTP}:80"
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- ./reverse-proxy/conf.d.dev:/etc/nginx/conf.d:ro
|
||||
command: ["nginx-debug", "-g", "daemon off;"]
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ version: "3.7"
|
|||
services:
|
||||
reverse-proxy:
|
||||
ports:
|
||||
- "${REVERSE_PROXY_HOST_PORT_HTTPS}:443"
|
||||
- "443:443"
|
||||
depends_on:
|
||||
- web
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Reference in a new issue