Blob Blame History Raw
# Sample apache configuration file for ajaxterm

Listen 443
NameVirtualHost *:443

<VirtualHost *:443>
   ServerName localhost
   SSLEngine On
   SSLCertificateKeyFile /etc/pki/tls/private/apache.pem
   SSLCertificateFile /etc/pki/tls/certs/apache.pem

   # Suppresses the Via header
   ProxyVia Off
   # Do not flood the log
   #CustomLog /var/log/httpd/access.log combined env=!dontlog
   #SetEnvIf Request_URI "^/ajaxterm/u" dontlog

   ProxyRequests Off
   <Proxy *>
           Order deny,allow
           Allow from all
   </Proxy>

   ProxyPass /ajaxterm/ http://localhost:8022/
   ProxyPassReverse /ajaxterm/ http://localhost:8022/

</VirtualHost>