Files
wiki-tcg/frontend/nginx.conf
2026-03-18 15:33:24 +01:00

8 lines
127 B
Nginx Configuration File

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