Premier commit

This commit is contained in:
phil
2021-01-04 22:49:46 +01:00
parent da1100578d
commit 65b2a3eaf3
538 changed files with 52570 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// config automatique
// PS - 2015-06-09
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
dnsDomainIs(host, "gsb.lan") ||
isInNet(host, "172.16.0.0", "255.255.255.0") ||
isInNet(host, "127.0.0.1", "255.255.255.255"))
return "DIRECT";
else
return "PROXY 172.16.0.2:8080";
}

View File

@@ -0,0 +1,9 @@
---
- name: Installation lighttpd
apt: name=lighttpd state=present
- name: Copie wpad.dat
copy: src=wpad.dat dest=/var/www/html