logos-storage-marketplace-ui/docker/default.conf.template
Slava 11b44ce8be
Use custom Nginx config (#58)
* Add custom Nginx config (#53)

* Use custom Nginx config (#53)
2024-10-18 14:00:24 +03:00

16 lines
270 B
Plaintext

server {
listen 80;
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;
}
}