Nathan Baker
Nathan Baker
It looks like the `squid` in Ubuntu's bionic repository is not built with `--enable-ssl`. This docker image just pulls from Ubuntu using `apt`. I managed to work around it by...
@rthunoli yes, exactly. My config allows me to connect either over plaintext on port 3128 or TLS on port 3129.
If you want to run my container that I built using the recipe I give above, I put it on Dockerhub: https://hub.docker.com/repository/docker/sysdignathan/secure-squid
``` nathan@nathanb-dev ~/tmp % cat squid.conf http_port 3128 https_port 3129 cert=/etc/squid/proxy.pem dns_v4_first on acl localnet src 10.0.0.0/8 # RFC1918 possible internal network acl localnet src 172.16.0.0/12 # RFC1918 possible internal...
@taras-vibes you see on line 2 of the config I posted that there's `cert=/etc/squid/proxy.pem`? You just have to mount the certificate into the container at that path as part of...
@taras-vibes yes, you can read the squid docs to understand the format of the logs, but essentially it means that a TCP tunnel has been successfully established between your system...
I would like to +1 this idea. Any idea if it will get implemented?
Expected behavior: throw an exception, not segfault. Extra credit: add an example in the documentation explaining how to do what I'm trying to do, but the correct way (or tell...
Thanks so much for the information and for reporting the issue upstream! The problem I'm (clumsily) trying to solve is that I need a dialog box asking for input from...
I'm still a eBPF newbie, but FWIW this change looks good to me :)