summaryrefslogtreecommitdiffstats
path: root/funcweb/etc/funcweb.conf
blob: 2b73eb77d544eea2730fbf3fb6bd01d74aad8166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>