Hi,
Installed Pydio Cells on Centos 7: internal IP 192.168.44.104:8080 SSL.
I can access it internal without any problems “https://192:168.44.104”.
Then I setup a Firewall Configuration from External IP to Internal IP Adress to Port 443.
Also made following Apache Configurations:
<VirtualHost 192.168.44.104:443>
ServerName XXXXXXX
May be necessary for API direct accesses
AllowEncodedSlashes On
SSLEngine on
RewriteEngine On
SSLProxyEngine On
SSLProxyCheckPeerCN Off
SSLProxyCheckPeerName Off
SSLProxyVerify none
SSLCertificateFile /etc/httpd/conf/ssl.crt/XXXXXX.cer
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/XXXXXXX.key
Proxy WebSocket
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) wss://192.168.44.104:8080/$1 [P,L]
Finally simple proxy instruction
ProxyPass “/” “https://192.168.44.104:8080/”
ProxyPassReverse “/” “https://192.168.44.104:8080/”
If I call external IP/ domain. I can access pydio but I have a lot of issues and getting following Error Messages:
Does anyone know what’s the problem?
thanks!