Corrected file structure

This commit is contained in:
2026-05-03 23:10:26 +02:00
parent f85428a6db
commit ff6ecd2ff4
7 changed files with 861 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
server {
listen 80;
server_name wpad wpad.lan wpad.kernel.rip;
location /wpad.dat {
root /var/www/wpad;
types { }
default_type application/x-ns-proxy-autoconfig;
}
# WPAD spec wants both /wpad.dat and /proxy.pac available
location /proxy.pac {
alias /var/www/wpad/wpad.dat;
types { }
default_type application/x-ns-proxy-autoconfig;
}
}