docker-filezilla
                                
                                
                                
                                    docker-filezilla copied to clipboard
                            
                            
                            
                        [Feature request] Reverse Proxy for apache2
Idea
Hi there, im using apache2 and have several docker-apps behind a reverse proxy, but when i try to use that config with feilezilla i only get a 'failed to connect' error. my config so far:
<VirtualHost>
Servername filezilla.domain.tld
SSLCertificateFile /etc/letsencrypt/live/filezilla.domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/filezilla.domain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLProxyEngine On ProxyPass /.well-known ! ProxyPass "/" "http://127.0.0.1:5800/" ProxyPassReverse "/" "http://127.0.0.1:5800/" ProxyPreserveHost On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
</VirtualHost>
What to change/add/remove ?
br
Is the "failed to connect" error comes from the browser or from a partially loaded page ? This containers requires WebSocket support. I'm not sure how to do it with Apache, but it usually requires special settings to reverse proxy a WebSocket.
You can see the error i get in the attached picture.
And i have no clue how to 'translate' the nginx.conf to apache2, thats why i ask over here.