Files
lol/nginx.conf
2026-03-09 18:41:02 +00:00

12 lines
174 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
error_page 404 /404.html;
location / {
try_files $uri $uri/ =404;
}
}