racemash/nginx/default.conf

11 lines
181 B
Plaintext
Raw Normal View History

2024-07-26 16:53:59 +02:00
server {
listen 80;
server_name racemash.maciejpedzi.ch;
2024-07-26 16:53:59 +02:00
root /usr/share/nginx/html;
index index.html index.htm;
2024-07-26 16:53:59 +02:00
location / {
try_files $uri $uri/ /index.html;
}
}