Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    haproxy - not working

    Scheduled Pinned Locked Moved Cache/Proxy
    18 Posts 2 Posters 1.5k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • TMGT
      TMG @VioletDragon
      last edited by

      @VioletDragon
      Hello, thanks again for the feedback.
      I have not received a static external IP from my provider. So far I have solved this in connection with the UDM via nginx-proxymanger and used IPv64.net DynDNS addresses
      worked. In npm I have the certificate and forwarded from the DynDNS to the internal server IP.
      Exactly, that would also be great with pfSenese.

      What IP address must/can I assign in the VIP?
      I have currently only entered the public ones from cloudflare and google as DNS servers. I actually plan to have my own DNS server. The question is where to put it: on the pfsense or on the proxmox server behind the pfsense?

      I have created certifacte with ACME. Have I already created some for testing? Do I have to use the same one everywhere?

      Wireguard is planned for later, for access to the homelab.

      TMGT VioletDragonV 2 Replies Last reply Reply Quote 0
      • TMGT
        TMG @TMG
        last edited by

        # Automaticaly generated, dont edit manually.
        # Generated on: 2023-12-14 20:12
        global
        	maxconn			100031
        	stats socket /tmp/haproxy.socket level admin  expose-fd listeners
        	uid			80
        	gid			80
        	nbthread			1
        	hard-stop-after		15m
        	chroot				/tmp/haproxy_chroot
        	daemon
        	server-state-file /tmp/haproxy_server_state
        
        listen HAProxyLocalStats
        	bind 127.0.0.1:2200 name localstats
        	mode http
        	stats enable
        	stats refresh 10
        	stats admin if TRUE
        	stats show-legends
        	stats uri /haproxy/haproxy_stats.php?haproxystats=1
        	timeout client 5000
        	timeout connect 5000
        	timeout server 5000
        
        frontend xxxxxx-Server
        	bind			192.168.1.1:443 name 192.168.1.1:443   ssl crt-list /var/etc/haproxy/xxxxxx-Server.crt_list  
        	mode			http
        	log			global
        	option			socket-stats
        	option			http-keep-alive
        	option			forwardfor
        	acl https ssl_fc
        	http-request set-header		X-Forwarded-Proto http if !https
        	http-request set-header		X-Forwarded-Proto https if https
        	timeout client		30000
        	acl			vaultwarden	var(txn.txnhost) -m beg -i xxxxxx.home64.de
        	acl			unifi	var(txn.txnhost) -m beg -i xxxxxx.duckdns.org
        	acl			aclcrt_xxxxxx-Server	var(txn.txnhost) -m reg -i ^xxxxxx\.home64\.de(:([0-9]){1,5})?$
        	http-request set-var(txn.txnhost) hdr(host)
        	use_backend vaultwarden_ipvANY  if  vaultwarden aclcrt_xxxxxx-Server
        	use_backend unifi_ipvANY  if  unifi aclcrt_xxxxxx-Server
        
        frontend HAProxy_stats_ssl_frontend
        	bind			192.168.1.1:444 name 192.168.1.1:444   ssl crt-list /var/etc/haproxy/HAProxy_stats_ssl_frontend.crt_list  
        	mode			http
        	log			global
        	timeout client		30000
        	default_backend HAProxy_stats_ssl_backend_ipvANY
        
        backend vaultwarden_ipvANY
        	mode			http
        	id			100
        	log			global
        	cookie  nocache
        	stats			enable
        	stats			uri /
        	stats			realm .
        	timeout connect		30000
        	timeout server		30000
        	retries			3
        	load-server-state-from-file	global
        	server			vaultwarden 192.168.1.231:8000 id 101 ssl  verify none crt /var/etc/haproxy/server_clientcert_657b0f05e4047.pem 
        
        backend unifi_ipvANY
        	mode			http
        	id			102
        	log			global
        	stats			enable
        	stats			uri /
        	stats			realm .
        	timeout connect		30000
        	timeout server		30000
        	retries			3
        	load-server-state-from-file	global
        	server			unifi 192.168.1.221:8443 id 101 ssl  verify none crt /var/etc/haproxy/server_clientcert_657b0f05e4047.pem 
        
        backend HAProxy_stats_ssl_backend_ipvANY
        	mode			http
        	id			105
        	log			global
        	stats			enable
        	stats			uri /
        	stats			realm .
        	stats			refresh 10
        	timeout connect		30000
        	timeout server		30000
        	retries			3
        	load-server-state-from-file	global
        
        tomuser@MacBook-Pro ~ % dig @8.8.8.8 xxxxxx.home64.de
        
        ; <<>> DiG 9.10.6 <<>> @8.8.8.8 xxxxxx.home64.de
        ; (1 server found)
        ;; global options: +cmd
        ;; Got answer:
        ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 532
        ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
        
        ;; OPT PSEUDOSECTION:
        ; EDNS: version: 0, flags:; udp: 512
        ;; QUESTION SECTION:
        ;xxxxxx.home64.de.		IN	A
        
        ;; ANSWER SECTION:
        xxxxxx.home64.de.	60	IN	A	77.23.205.1
        
        ;; Query time: 52 msec
        ;; SERVER: 8.8.8.8#53(8.8.8.8)
        ;; WHEN: Thu Dec 14 20:56:55 CET 2023
        ;; MSG SIZE  rcvd: 60
        
        1 Reply Last reply Reply Quote 0
        • VioletDragonV
          VioletDragon @TMG
          last edited by

          @TMG said in haproxy - not working:

          UDM

          UDM is a Dream Machine by Ubiquti. I would suggest having pfSense handling DNS as it will add more complexity to the solution.

          DynDNS is Dynamic DNS.

          VIP can be any IP as it's Virtual,.

          For SSL in Haproxy, the Certificate is mapped by the Frontend.

          TMGT 1 Reply Last reply Reply Quote 1
          • TMGT
            TMG @VioletDragon
            last edited by TMG

            @VioletDragon

            Nothing needs to go in here?

            a326e393-dbd8-4032-99e1-40992005b04b-image.png

            I still don't understand the connection between the VIP and the DynDns domain xxxxx.home64.de?
            How exactly this plays together.... I have been looking all day
            for a video or a configuration guide for my configuration.

            Do you mean these here, no??

            db989c93-1e55-4958-9e55-5528e353e252-image.png

            How and where exactly does the VIP come into play?

            TMGT VioletDragonV 2 Replies Last reply Reply Quote 0
            • TMGT
              TMG @TMG
              last edited by

              86af43a5-579a-48f9-b146-6d003e8906ae-image.png

              1 Reply Last reply Reply Quote 0
              • VioletDragonV
                VioletDragon @TMG
                last edited by

                @TMG Create a A Record that points to WAN.

                Under DNS Resolver -> Host Overrides. Create a Host & Domain Name, Add the IP of the VIP.

                Frontend of Haproxy needs two Entries One for Port 80 and another Port 443. Both needs the IP of VIP you created which comes under Listen address for both.

                For the SSL Certificate you specify it under Certificate. Make sure that the type is configured as http/https offloading.

                TMGT 1 Reply Last reply Reply Quote 0
                • TMGT
                  TMG @VioletDragon
                  last edited by

                  @VioletDragon

                  Port 443/80 here in Haproxy-config. ??

                  16615d2a-64eb-4b3e-93ab-7db3539d0164-image.png

                  VioletDragonV 1 Reply Last reply Reply Quote 0
                  • VioletDragonV
                    VioletDragon @TMG
                    last edited by

                    @TMG No. You need two frontends, one for Port 80 & Port 443.

                    Listen address needs to be set to the VIP.

                    Screenshot from 2023-12-14 21-28-19.png Screenshot from 2023-12-14 21-28-36.png Screenshot from 2023-12-14 21-28-55.png

                    TMGT 1 Reply Last reply Reply Quote 1
                    • TMGT
                      TMG @VioletDragon
                      last edited by

                      @VioletDragon
                      Good morning. I can only say thank you again and again for your efforts.
                      Must here in the dnsresolver/host_overrides also the created VIP purely

                      7a8abf6b-4957-410c-907b-e92567c467be-image.png

                      VioletDragonV 1 Reply Last reply Reply Quote 0
                      • VioletDragonV
                        VioletDragon @TMG
                        last edited by

                        @TMG Good morning, yes the IP is the VIP.

                        Depending on your OS, you can test by using Dig in Linux / macOS or nslookup in Windows.

                        Regards

                        TMGT 1 Reply Last reply Reply Quote 1
                        • TMGT
                          TMG @VioletDragon
                          last edited by

                          @VioletDragon
                          It's never happened to me before that I can't solve a problem for days. I can't get it to work?
                          dig always points to the public IP address.
                          Can you do me a big favor and take a look at the
                          pdf with the screenshots to see if you notice anything where I'm
                          am wrong ... or if something important is missing.
                          ... thanks thanks thanks
                          I just realized I can't attach a pdf?

                          TMGT 1 Reply Last reply Reply Quote 0
                          • TMGT
                            TMG @TMG
                            last edited by TMG

                            Here is a dropbox link
                            pfsense_screenshots

                            If you don't want that, please let me know. Maybe we can find another way.

                            VioletDragonV 1 Reply Last reply Reply Quote 0
                            • VioletDragonV
                              VioletDragon @TMG
                              last edited by

                              @TMG Attach Screenshots of DNS Resolver. Screenshots in pdf are small, Also attach screenshots of System -> General Setup & System -> Advanced -> Admin Access.

                              Regards

                              TMGT 1 Reply Last reply Reply Quote 1
                              • TMGT
                                TMG @VioletDragon
                                last edited by

                                @VioletDragon
                                I hope it´s bigger and you can read it

                                pfsense_2

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post
                                Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.