38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
#
|
|
# Squid configuration settings for all windows
|
|
#
|
|
|
|
# Logs are managed by logrotate on Debian
|
|
logfile_rotate 0
|
|
|
|
# For extra security Debian packages only allow
|
|
# localhost to use the proxy on new installs
|
|
#
|
|
#http_access allow localnet
|
|
acl gitlab dstdomain gitlab.com
|
|
acl github dstdomain github.com
|
|
acl api_github dstdomain api.github.com
|
|
acl security_debian dstdomain security.debian.org
|
|
acl deb_debian dstdomain deb.debian.org
|
|
acl ftp_debian dstdomain ftp.debian.org
|
|
acl packages_sury dstdomain packages.sury.org
|
|
acl pear_php dstdomain pear.php.net
|
|
acl packages_adoptium dstdomain packages.adoptium.net
|
|
acl raw_githubusercontent dstdomain raw.githubusercontent.com
|
|
acl odeload_github dstdomain codeload.github.com
|
|
acl packagist dstdomain packagist.org
|
|
acl repo_packagist dstdomain repo.packagist.org
|
|
|
|
http_access allow gitlab
|
|
http_access allow github
|
|
http_access allow api_github
|
|
http_access allow security_debian
|
|
http_access allow deb_debian
|
|
http_access allow ftp_debian
|
|
http_access allow packages_sury
|
|
http_access allow pear_php
|
|
http_access allow packages_adoptium
|
|
http_access allow raw_githubusercontent https_port
|
|
http_access allow odeload_github https_port
|
|
http_access allow packagist https_port
|
|
http_access allow repo_packagist |