Files
alttpr-frontend/nginx.conf
2025-03-01 11:54:51 -06:00

16 lines
249 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}