We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users are not able to connect to SyncTube when the service runs behind an Apache reverse proxy.
The application works when entering the raw address and port number (via IP or domain name).
Here is my Apache configuration:
<VirtualHost *:80> ServerName sync.lazarusoverlook.com Redirect permanent / http://sync.lazarusoverlook.com/ ProxyPreserveHost On ProxyPass / http://40.233.79.250:4200/ ProxyPassReverse / http://40.233.79.250:4200/ </VirtualHost>
Here is a screenshot of the instant disconnection:
The text was updated successfully, but these errors were encountered:
Server tries connection to wss://sync.lazarusoverlook.com/ and fails. Probably you need to also configure wss port (443) on your domain proxy?
wss://sync.lazarusoverlook.com/
Don't have experience with apache, so idk, there is some AI hints about further ws configuration as reference https://www.perplexity.ai/search/apache-reverse-proxy-cannot-up-vBChY0oeQgypNpawtkspuw
I only know that cloudflare https proxy works, so this is probably about correcting configuration too.
Sorry, something went wrong.
Here's an example from my previous setup before I switched to nginxproxymanager
<VirtualHost *:443> ServerName your.domain.com AllowEncodedSlashes On ProxyPreserveHost on RewriteEngine on RewriteCond %{HTTP:Upgrade} websocket [NC] RewriteCond %{HTTP:Connection} upgrade [NC] RewriteRule .* "ws://localhost:4200%{REQUEST_URI}" [P] ProxyRequests Off ProxyPass / http://localhost:4200/ ProxyPassReverse / http://localhost:4200/ SSLCertificateFile /etc/letsencrypt/live/your.domain.com/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/your.domain.com/privkey.pem </VirtualHost>
You'll have to turn on a few modules, but I never remember which ones. I know for sure you need rewrite and websockets in my example.
No branches or pull requests
Users are not able to connect to SyncTube when the service runs behind an Apache reverse proxy.
The application works when entering the raw address and port number (via IP or domain name).
Here is my Apache configuration:
Here is a screenshot of the instant disconnection:

Environment
The text was updated successfully, but these errors were encountered: