infra/ansible/files/temper.tv.conf

14 lines
144 B
Plaintext
Raw Permalink Normal View History

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