codex-marketplace-ui/docker/default.conf.template
Slava e988a0ecfe
Set Nginx port from variable (#59)
* Set Nginx port from a variable

* Add latest tag only from tags and default branch
2024-10-18 18:22:12 +03:00

16 lines
279 B
Plaintext

server {
listen ${APP_PORT};
server_name localhost;
root /usr/share/nginx/html;
error_page 500 502 503 504 /50x.html;
location / {
root ${APP_HOME};
index index.html;
try_files $uri $uri/ /index.html =404;
}
}