Skip to content

Commit 35b3c4b

Browse files
authored
deploy: make prod http/https ports configurable (#1774)
Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
1 parent 475d97b commit 35b3c4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose-next.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ services:
8181
- ${SSL_CHAIN_FILE:-/etc/letsencrypt/live/d.kernelci.org/fullchain.pem}:/etc/nginx/ssl/fullchain.pem
8282
- ${SSL_KEY_FILE:-/etc/letsencrypt/live/d.kernelci.org/privkey.pem}:/etc/nginx/ssl/privkey.pem
8383
ports:
84-
- 80:80
85-
- 443:443
84+
- ${EXTERNAL_HTTP_PORT:-80}:80
85+
- ${EXTERNAL_HTTPS_PORT:-443}:443
8686
env_file: .env
8787
environment:
8888
PROXY_TARGET: ${PROXY_TARGET:-http://backend:8000}

0 commit comments

Comments
 (0)