httpd代理及ssl

<VirtualHost *:80>

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /epay http://epayapf5:9002/epay
ProxyPassReverse /epay http://epayapf5:9002/epay

<Location /console>
Require all denied
</Location>

        LogLevel info

        ErrorLog "|/home/ap/apache/httpd/bin/rotatelogs /home/logs/epay80/epay_error.log_%Y-%m-%d 86400"
        CustomLog "|/home/ap/apache/httpd/bin/rotatelogs /home/logs/epay80/epay_access.log_%Y-%m-%d 86400" combined

</VirtualHost>
Listen epayweb:9443
<VirtualHost epayweb:9443>
SSLEngine on
SSLCertificateFile "/home/ap/apache/httpd/conf/cert/minsheng.cer"
SSLCertificateKeyFile "/home/ap/apache/httpd/conf/cert/minsheng.key"
SSLCertificateChainFile "/home/ap/apache/httpd/conf/cert/ca-cert.cer"
RequestHeader set X-Forwarded-Proto "https"

ProxyRequests Off
SSLProxyEngine On
ProxyPreserveHost On

ProxyPass /epay http://epayapf5:9002/epay
ProxyPassReverse /epay http://epayapf5:9002/epay

        LogLevel info
        ErrorLog "|/home/ap/apache/httpd/bin/rotatelogs /home/logs/epay/epay_error.log_%Y-%m-%d 86400"
        CustomLog "|/home/ap/apache/httpd/bin/rotatelogs /home/logs/epay/epay_access.log_%Y-%m-%d 86400" combined
        
</VirtualHost>

posted @ 2015-07-06 09:30  W&L  阅读(282)  评论(0编辑  收藏  举报