Hi all,
I am trying to use an Apache reverse proxy server for the Admin Console. My config is below, using a deb 6 installation with Apache2 and mod_proxy, mod_html, mod_header.
My config:
The result is that the login dialogue box is presented but 'Realm' is not filled in nor does it have any values to select in the dd box.
When accessing the Admin site directly, all works fine.
Does anyone have any ideas?
Cheers,
James.
I am trying to use an Apache reverse proxy server for the Admin Console. My config is below, using a deb 6 installation with Apache2 and mod_proxy, mod_html, mod_header.
My config:
Code:
<virtualhost *:443>
SSLEngine On
SSLCertificateFile /etc/apache2/ssl-certs/certnew.cer
SSLCertificateKeyFile /etc/apache2/ssl-certs/key_nopf.key
SSLProxyEngine on
ProxyPreserveHost On
ProxyRequests off
DocumentRoot /var/www
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
ProxyHTMLStripComments on
#-- Proxmox
ProxyPass /prox/ https://192.168.50.251:8006/
ProxyHTMLURLMap https://192.168.50.251:8006 /prox
<Location /prox>
SetOutputFilter proxy-html
RequestHeader unset Accept-Encoding
ProxyPassReverse https://www.domain.com/prox
ProxyPassReverse /
ProxyHTMLURLMap / /prox/
Order allow,deny
Allow from all
</Location>
</VirtualHost>
The result is that the login dialogue box is presented but 'Realm' is not filled in nor does it have any values to select in the dd box.
When accessing the Admin site directly, all works fine.
Does anyone have any ideas?
Cheers,
James.
Last edited: