Virtual Host Apache File for the Reverse Proxy that Runs on the same machine as Collabora/Docker.
i co teraz
<VirtualHost *:80>
ServerName tautulli.dccs.pl
ServerAdmin jacob@dccs.pl
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
</VirtualHost>
Proxy Pass with SSL
<VirtualHost *:8443>
ServerName localhost.localdomain
SSLEngine on
SSLCertificateFile /etc/httpd/conf.d/ssl/server.crt
SSLCertificateKeyFile /etc/httpd/conf.d/ssl/server_priv.pem
ProxyRequests off
SSLProxyEngine on
Loglevel debug
ErrorLog /home/df/Desktop/errorLog443.txt
TransferLog /home/df/Desktop/transferLog443.txt
<Location /gd_endpoint/>
ProxyPass https://domain.com:45093/abc/1.1.0
ProxyPassReverse https://domain.com:45093/abc/1.1.0
Order deny,allow
Deny from all
Allow from all
</Location>