Code: Select all
Listen 443
NameVirtualHost *:443
<VirtualHost *:443>
ServerName localhost
SSLEngine On
SSLCertificateKeyFile ssl/server.key
SSLCertificateFile ssl/server.crt
ProxyRequests Off
<Proxy *>
AuthType Basic
AuthName "remote Shell Access"
AuthBasicProvider file
AuthUserFile /etc/apache2/passwd
Require user laus
Order deny,allow
Allow from all
</Proxy>
ProxyPass /ajaxterm/ [URL]http://localhost:8022/[/URL]
ProxyPassReverse /ajaxterm/ [URL]http://localhost:8022/[/URL]
</VirtualHost>Was mache ich falsch?