1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 15:28:06 +02:00

Use port 443 on nginx container

This commit is contained in:
Christopher Hoskin 2021-04-23 16:46:38 +01:00
parent 5309e7d44f
commit 5027e452cb
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ http {
server {
listen 18443 ssl;
listen 443 ssl;
server_name _; # Catch all, see http://nginx.org/en/docs/http/server_names.html
server_name overleaf-toolkit.com;

View file

@ -5,7 +5,7 @@ services:
nginx:
image: "${NGINX_IMAGE}"
ports:
- "127.0.0.1:${TLS_PORT:-443}:18443"
- "127.0.0.1:${TLS_PORT:-443}:443"
volumes:
- "${TLS_PRIVATE_KEY_PATH}:/certs/nginx_key.pem"
- "${TLS_CERTIFICATE_PATH}:/certs/nginx_certificate.pem"