hns_doh_loadbalancer/public/nginx.conf
Nathan Woodburn adc76c8c5e
All checks were successful
Build Docker / Build_Docker (push) Successful in 45s
feat: Moved website files to new location
2024-06-20 18:25:48 +10:00

13 lines
185 B
Nginx Configuration File

server {
listen 80;
server_name _;
access_log off;
location / {
root /var/www/html;
index index.html;
# 404 error page
error_page 404 /index.html;
}
}