Files
astro-website/deploy/nginx.conf
Santhosh Janardhanan af112a713c
Some checks failed
ci / site (push) Has been cancelled
Initial commit - but way too late.
2026-02-10 00:22:18 -05:00

15 lines
319 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Static assets
location / {
# Serve directory index pages without requiring a trailing slash.
# This fixes /videos (and similar) resolving to /videos/index.html.
try_files $uri $uri/index.html $uri/ =404;
}
}