Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Setup your own DNS and HAProxy based Netflix/Hulu Tunnel

13»

Comments

  • 2460124601 Member

    Thanks man!!!

  • ATHKATHK Member

    @24601 said:
    Thanks man!!!

    Forgot to mention that you need to change IP to your VPS IP obviously :)

    Enjoy though.

  • 2460124601 Member
    edited March 2016

    I wonder if Haproxy could be replaced with Nginx to auto point to the subdomain like:

       listen  80;
        server_name ~^(?<subdomain>.+)\.domain\.com$;
    
        location / {
            proxy_pass $subdomain.domain2.com;
        }
    
Sign In or Register to comment.