summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apache/files/vhosts.d/couchdb_proxy.conf
blob: 79ad931d43536f2eb95a0683e49665f29e6644b1 (plain)
1
2
3
4
5
6
7
8
9
10
Listen 0.0.0.0:6984

<VirtualHost *:6984>
    SSLEngine On
    SSLProxyEngine On
    SSLCertificateKeyFile /etc/couchdb/server_key.pem
    SSLCertificateFile    /etc/couchdb/server_cert.pem 
    ProxyPass / http://127.0.0.1:5984/
    ProxyPassReverse / http://127.0.0.1:5984/
</VirtualHost>