Forum Moderators: phranque
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:443 is a NameVirtualHost
default server localhost (/etc/httpd/conf.d/ssl.conf:228)
port 443 namevhost localhost (/etc/httpd/conf.d/ssl.conf:228)
Syntax OK
NameVirtualHost *:443
Listen 443
ServerAdmin root@localhost
ServerName localhost <VirtualHost *:443>
ServerAdmin root@localhost
# DocumentRoot /var/www/html
# ServerName localhost
ServerAlias analyzer
ProxyPass / http://127.0.0.1:8000/
ProxyPassReverse / http://127.0.0.1:8000/
ErrorLog /var/logs/httpd/analyzer-error.log
CustomLog /var/logs/httpd/analyzer-access.log combined
SSLEngine On
SSLCertificateFile /etc/httpd/conf/ssl.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key
SSLProxyEngine on
</VirtualHost>
<Proxy http://127.0.0.1:8000/*>
Order deny,allow
Deny from all
Allow from all
AuthName "analyzer"
AuthType Basic
AuthUserFile /var/www/.htpasswd
Require valid-user
</Proxy>