I want to run Etherpad with an Apache server as a proxy in between. Apache is needed because we want to use Kerberos authentication so only our users may access the website.
We also want to run Etherpad over HTTPS, but it won't work yet.
I can access the site, but changes in a pad don't arrive at the server. After a few seconds I get:
Disconnected.
Lost connection with the EtherPad synchronization
server.
Here is my Apache configuration. Any advice?
I'm not so very experienced with Apache yet, so I might be missing something obious.
<VirtualHost _default_:443>ServerName etherpad.cs.uni-paderborn.deServerAlias etherpad.cs.upb.deSSLEngine OnSSLCertificateFile /etc/apache2/ssl/etherpad.cs.uni-paderborn.de.pemSSLCertificateKeyFile /etc/apache2/ssl/etherpad.cs.uni-paderborn.de.keySSLCertificateChainFile /etc/apache2/ssl/certchain.pem<IfModule mod_proxy_http.c> ProxyRequests Off ProxyPass / http://localhost:9000/ ProxyPassReverse / http://localhost:9000/ ProxyPreserveHost on <Proxy http://localhost:9000/> Options FollowSymLinks MultiViews AllowOverride All Order Allow,Deny Allow from all AuthType Kerberos <authentication stuff> </Proxy></IfModule></VirtualHost>