woodburn/nginx.conf
Nathan Woodburn f368bf2de5
All checks were successful
Build Docker / CheckFiles (push) Successful in 5s
Build Docker / Build Docker (push) Successful in 27s
nginx: Disable .git dir
2023-09-30 12:36:11 +10:00

25 lines
417 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;
location = /404.html {
}
}