Replies: 1 comment 1 reply
-
OK, I'm no expert in Apache configurations so let's see. By default, websockets run over the same host and port as the web server - but you can also configure them separately if you want to. For now though, to make them work on the same host and port under Finally, it's also possible that you might need to configure Apache to proxy websockets using https://httpd.apache.org/docs/2.4/mod/mod_proxy_wstunnel.html Try it out and let me know how it goes. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I want to use apache as proxy and redirect address
https://mysite.com/myapp
to app severmy_server_ip:port
, what should I do?I make some work...
Now Genie server work. Page from apache loaded well, but I can't operate. Seems WebSocket try to connect directly to
mysite.com
, but it not response (indeed,/myapp
should be redirected,/
used by apache)Is any way to make
https://mysite.com/myapp
work, or I need to make proxy fromhttp://myapp.mysite.com
or fromhttp://mysite.com:8000
?Errors from browser when page loaded from apache:
Errors from browser when local page loaded (directly from Genie):
prod.jl
Apache proxy settings :
routes.jl
app.jl.html
Beta Was this translation helpful? Give feedback.
All reactions