Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 86a3c9fb4f03e4b94a7a367e007ad924 > files > 23

Ajaxterm-0.10-13.fc14.noarch.rpm

# 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>