Files
hugoblog/nginx.conf

11 lines
174 B
Nginx Configuration File

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