Files

12 lines
163 B
Plaintext
Raw Permalink Normal View History

2022-06-07 13:38:45 +01:00
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}