Files
2024-11-19 08:46:20 +01:00

11 lines
233 B
Nginx Configuration File

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
}