0byt3m1n1
Path:
/
data
/
config
/
ssl
/
[
Home
]
File: ssl.conf.orig
## ## SSL TEMPLATE IS THE FIRST PART ## # ## In order to set up a dedicated ssl customer, you need two proxying ## virtualhosts. One for ssl, one for normal http. The following are ## examples, with comments inline. # ## The following lines are required for the new ip, one for each https and http # #Listen 10.10.10.120:443 #Listen 10.10.10.120:80 # ## First is the ssl virtualhost. Order doesnt really matter. # #<VirtualHost 10.10.10.120:443> #ServerName www.canvasback-needlepoint.com #ServerAlias canvasback-needlepoint.com # #SSLEngine on #SSLCipherSuite ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL # ## This next line is the SSL certificate itself. #SSLCertificateFile /data/config/ssl/ssl.crt/www.canvasback-needlepoint.com.crt # ## This is the key that was used to generate the certificate. #SSLCertificateKeyFile /data/config/ssl/ssl.key/www.canvasback-needlepoint.com.key # ## Some Certificate authorities require you to add a certificate file for their ## CA - this may not be the case on all requests. #SSLCACertificateFile /data/config/ssl/ssl.ca/canvasback-needlepoint.txt # ## This is the rewrite rules that reference the vux cluster website. ## They are used in tandem with the /etc/hosts entries for this website. #RewriteEngine on #RewriteCond %{REQUEST_URI} ^/.* #RewriteRule ^(.*)$ http://www.canvasback-needlepoint.com/$1 [P,L] #</VirtualHost> # ## The non-ssl entry is very straightforward. # #<VirtualHost 10.10.10.120:80> #ServerName www.canvasback-needlepoint.com #ServerAlias canvasback-needlepoint.com #RewriteEngine on #RewriteCond %{REQUEST_URI} ^/.* #RewriteRule ^(.*)$ http://canvasback-needlepoint.com$1 [P,L] #</VirtualHost> #