After installing my new pfSense firewall, I wanted to expose some of my servers to the internet. First, I had HTTP and HTTPS made available for this blog by using NAT. But that’s not very secure, so I found HAProxy, a module inside pfSense. It’s a reverse proxy, among other things.
I configured it to use ACME, another module inside pfSense, to acquire SSL certificates from Let’s Encrypt, handle all SSL traffic and then send the requests to my internal servers. The internal servers no longer need to handle SSL traffic, so they talk to the HAProxy with unencrypted port 80 traffic. Thus separating the outside WAN from my servers on the inside LAN. I found an excellent guide on how to set this up.

Problem with internal access

But I could not get calls to the servers from the internal network to work properly. So I decided to route all internal calls on LAN to the HAProxy as well. But it refused to work. I did Host Overrides so that the URL of the servers pointed to my pfSense firewall. I configured HAProxy to listen to the LAN network as well as WAN, but that didn’t fix it. But after hours of searching, I found the solution.

Solution

Inside the HAProxy settings, under Front End, I configured it to listen to LAN as well as WAN. Because that feels obvious, doesn’t it?

The HAProxy external address table listing two rows on port 443, WAN address (IPv4) and LAN address (IPv4) — the setup that does not work

But no. That doesn’t work. You need to set it to Any (IPv4) instead of LAN Address (IPv4).

The same table with the second row changed to any (IPv4), which is what makes the sites reachable from the LAN

Now I can access all the servers on the inside with SSL encryption, and an added bonus to be able to access different servers on port 443 from WAN and LAN by using rules on HAProxy just by using different subdomains. Very nifty. Hopefully you landed on this page if you had the same problem.

Don’t forget to setup a new rule on your firewall to allow LAN traffic to port 443 on your pfSense firewall. And naturally you need to change your access port to the pfSense firewall to something else than 443 to avoid conflict.