hns_doh_loadbalancer/public/nginx.conf

13 lines
185 B
Nginx Configuration File
Raw Normal View History

2023-12-15 15:20:15 +11:00
server {
listen 80;
server_name _;
access_log off;
2023-12-15 17:00:01 +11:00
location / {
root /var/www/html;
index index.html;
2023-12-16 12:26:12 +11:00
# 404 error page
error_page 404 /index.html;
2023-12-15 17:00:01 +11:00
}
2023-12-15 14:29:49 +11:00
}