initial commit

This commit is contained in:
2026-05-03 22:56:28 +02:00
parent 1e18619a4b
commit f85428a6db
7 changed files with 972 additions and 2 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;
}
}