landing/deploy/default.conf
2024-04-30 19:08:15 +02:00

11 lines
183 B
Plaintext
Executable File

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