diff --git a/.docker/resources/nginx.conf b/.docker/resources/nginx.conf index c43f8e7f..6d723b34 100644 --- a/.docker/resources/nginx.conf +++ b/.docker/resources/nginx.conf @@ -9,11 +9,11 @@ http { index index.html; server { - listen ___PORT___; - listen [::]:___PORT___; + listen 80; + listen [::]:80; root /usr/share/nginx/html; - index /___APP___/index.html; + index /frontend/index.html; # Harden security server_tokens off; @@ -35,11 +35,11 @@ http { location / { expires -1; - try_files $uri /___APP___/index.html; + try_files $uri /frontend/index.html; } - location = /___APP___/version { + location = /frontend/version { alias /usr/share/nginx/html/version.json; } }