dnd-hub/infra/nginx.conf
2026-03-16 22:15:15 -04:00

10 lines
126 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}