infra/ansible/files/shockrah.xyz.conf

13 lines
149 B
Plaintext
Raw Permalink Normal View History

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