woodburn/nginx.conf
Nathan Woodburn c45b41677a
All checks were successful
Build Docker / CheckFiles (push) Successful in 7s
Build Docker / Build Docker (push) Successful in 20s
nginx: Fix 404 location
2023-09-30 12:43:46 +10:00

26 lines
453 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri.html $uri/ =404;
}
location ~ /\.git {
deny all;
access_log off;
log_not_found off;
}
# Custom 404 page
error_page 404 /404.html;
root /usr/share/nginx/html;
location = /404.html {
}
}