hns_doh_loadbalancer/website/nginx.conf
Nathan Woodburn 51076c5dc1
All checks were successful
Build Docker / Build Docker (push) Successful in 46s
feat: Added new nodes
2024-02-28 23:20:41 +11: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;
}
}