summaryrefslogtreecommitdiffstats
path: root/funcweb/etc/funcweb.conf
blob: 0f8cf764cdfd75e30db9f6803aa47c3907acb013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
NameVirtualHost localhost:443

<VirtualHost localhost:443>
    ServerName localhost
    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 /tg_widgets http://127.0.0.1:51236/tg_widgets
    ProxyPassReverse /tg_widgets http://127.0.0.1:51236/tg_widgets
    ProxyPass /funcweb http://127.0.0.1:51236/funcweb
    ProxyPassReverse /funcweb http://127.0.0.1:51236/funcweb
</VirtualHost>