trptk-sanity/nginx.conf
Brendon Heinst 867309cab8 Add Dockerfile and nginx config for self-hosted deployment
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 14:04:49 +01:00

11 lines
182 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
include /etc/nginx/mime.types;
location / {
try_files $uri $uri/ /index.html;
}
}