kokolegorille

kokolegorille

Websocket reverse proxy with apache2

Hello everyone,

I am having a hard time trying to reverse proxy with apache2 to my production release.

The release is running on port 4010 on a dedicated Linux box. Application works fine when using this port, websocket are also working fine.

But when I use apache2 to reverse proxy, the site appears correctly, the api calls are working too, only websocket are denied with code 403.

So I activated mod_proxy_wstunnel with

a2enmod proxy_wstunnel

and used this virtual host config

<VirtualHost *:80>
	ServerAdmin koko.le.gorille@gmail.com
	ServerName www.whatever.com
        ProxyPreserveHost On
        ProxyPass / http://0.0.0.0:4010/
        ProxyPass /socket ws://0.0.0.0:4010/
        ProxyPassReverse / http://0.0.0.0:4010/
        ProxyPassReverse /socket ws://0.0.0.0:4010/
</VirtualHost>

In particular these lines

ProxyPass /socket ws://0.0.0.0:4010/
ProxyPassReverse /socket ws://0.0.0.0:4010/

But socket connection is still denied. I am using apache2 over nginx mainly for historical reason. Any ideas?

Thanks for taking time

Marked As Solved

m1dnight

m1dnight

Just a little side note: it does not work for the live reload socket, because that one does not use the /socket/ path, and thus falls through over HTTP. I have not found a fix for that, yet.

Also Liked

kokolegorille

kokolegorille

I solved this by using nginx instead. Thanks for sample apache config.

m1dnight

m1dnight

I accidentally removed my solution. So here it is, again:

<VirtualHost *:80>
    ServerName example.com
    ErrorDocument 404 /404.html
    ServerAdmin admin@example.com

    ProxyPass        /socket/ ws://myapp.com:8000/socket/
    ProxyPassReverse /socket/ ws://myapp.com:8000/socket/

    ProxyPass        / http://myapp.com:8000/
    ProxyPassReverse / http://myapp.com:8000/

</VirtualHost>

The example assumes your Apache reverse proxy is running on example.com, and your application is running on myapp.com with port 8000 published.

Just a little side note: it does not work for the live reload socket, because that one does not use the /socket/ path, and thus falls through over HTTP. I have not found a fix for that, yet.

Last Post!

trigeek38

trigeek38

This final configuration worked for me including live and live reload

<VirtualHost *:80>
    ServerName myserver.com

   RewriteEngine on
   RewriteCond %{HTTP:Upgrade} websocket [NC]
   RewriteCond %{HTTP:Connection} upgrade [NC]
   RewriteRule ^/?(.*) "ws://localhost:4000/$1" [P,L]

   ProxyPass        /socket/ ws://localhost:4000/socket/
   ProxyPassReverse /socket/ ws://localhost:4000/socket/

   ProxyPass        /live/ ws://localhost:4000/socket/
   ProxyPassReverse /live/ ws://localhost:4000/socket/

   ProxyPass        / http://localhost:4000/
   ProxyPassReverse / http://localhost:4000/

</VirtualHost>

Where Next?

Popular in Questions Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
mcarvalho
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
Fl4m3Ph03n1x
About me? ( if you have nothing better to do than reading about some random guy in the internet :stuck_out_tongue: ) Hello all, this is ...
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New

Other popular topics Top

stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 40042 209
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New

We're in Beta

About us Mission Statement