Files

14 lines
144 B
Plaintext
Raw Permalink Normal View History

2024-04-16 20:27:54 -07:00
server {
2024-04-28 16:46:54 -07:00
listen 80;
server_name temper.tv;
2024-04-16 20:27:54 -07:00
root /opt/nginx/temper.tv;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}