oracolo-docker/nginx.conf
PastaGringo 9d7b2669bc
v1.0.0
2024-05-27 16:19:52 +02:00

16 lines
331 B
Nginx Configuration File

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