do you leak?

It would seem I have configured {{OpenVPN}}, {{Squid proxy}}, and, to a lesser extent, Pi-hole well – none of the major sites that report IP, {{DNS}}, and other connection-related security issues find anything out of the ordinary when I’m either running “just” proxied, or {{VPN}}, or VPN+proxy. You should check yourself hereon: https://ipleak.net http://ip-check.info/?lang=en (ironic …
Continue reading do you leak?

a fairly comprehensive squid configuration for proxying all the http things

After combing through the docs and several how–tos on deploying the {{Squid proxy}} server – none of which really did everything I wanted, of course – I’ve finally gotten to the format below. Installing Squid is easy-peasy – it’s in the standard package repos for the major platforms ({{CentOS}}/{{Fedora}}/{{RHEL}}, {{Ubuntu}}/{{Debian}}, etc) – so just run …
Continue reading a fairly comprehensive squid configuration for proxying all the http things

reverse proxying from apache to tomcat

After much hemming and hawing, I was able to get {{Apache}} working as a reverse proxy to {{Tomcat}} today. <VirtualHost *:80> ServerName domain.com ServerAlias www.domain.com ProxyPreserveHost on ProxyPass / http://localhost:8080/path/ ProxyPassReverse / http://domain.com:8080/path/ </VirtualHost> That’s all you need (though you can add much more). Note the trailing slashes on the proxy paths – without them, …
Continue reading reverse proxying from apache to tomcat