10 lines
191 B
Plaintext

server_tokens off;
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
server_name localhost;
location / {
try_files $uri $uri/ /index.html;
}
}