Files
siembol/deployment/docker/nginx-server.conf
Celie Valentiny 7856f367bd changing default nginx config (#151)
* changing default nginx config
2020-10-20 10:32:39 +01:00

24 lines
497 B
Plaintext

server {
listen 8080;
listen [::]:8080;
server_name localhost;
root /usr/share/nginx/html;
location /config {
root /usr/share/nginx/html;
}
location /assets {
root /usr/share/nginx/html;
}
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}