- Cleanup init script - Add a sysconfig file - Relocate pidfile to /var/run/ajaxterm/ajaxterm.pid - Add a README.Fedora - Add an example config for Apache
28 lines
656 B
Text
28 lines
656 B
Text
# 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>
|
|
|