diff options
| author | makkalot <makkalot@gmail.com> | 2008-07-06 00:59:56 +0300 |
|---|---|---|
| committer | makkalot <makkalot@gmail.com> | 2008-07-06 00:59:56 +0300 |
| commit | 1d168e7cce762bdae1ce75b883c70753449bf58f (patch) | |
| tree | 415e71f3a14a6b8aad0ae2d88d1d5157882d4967 /funcweb | |
| parent | 92e4b8445e2cfff197097f658ad8048daeda0fa5 (diff) | |
the virtual server entry for funcweb behind ssled apache :)
Diffstat (limited to 'funcweb')
| -rw-r--r-- | funcweb/etc/funcweb.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/funcweb/etc/funcweb.conf b/funcweb/etc/funcweb.conf new file mode 100644 index 0000000..2b73eb7 --- /dev/null +++ b/funcweb/etc/funcweb.conf @@ -0,0 +1,18 @@ +NameVirtualHost 127.0.0.1:443 + +<VirtualHost 127.0.0.1:443> + ServerName 127.0.0.1 + SSLEngine on + SSLCertificateFile /etc/pki/tls/certs/localhost.crt + SSLCertificateKeyFile /etc/pki/tls/private/localhost.key + Errorlog /var/log/httpd/funcweb-error + Customlog /var/log/httpd/funcweb-access common + UseCanonicalName Off + ServerSignature Off + AddDefaultCharset utf-8 + ProxyPreserveHost On + ProxyRequests Off + #ProxyPass /static/ ! + ProxyPass / http://127.0.0.1:51236/ + ProxyPassReverse / http://127.0.0.1:51236/ +</VirtualHost> |
