How To Force Apache To Use https

1 2 3 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} |
![]() |
1 2 3 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} |
Create the server key from your original private key by removing the pass-phase:
1 |
openssl rsa -in key.pem -out server.key |
These are the files that NetSol provided me in the download .zip file (domain name changed to protect the innocent):
1 2 3 4 |
AddTrustExternalCARoot.crt NetworkSolutionsAddTrustEVServerCA.crt NetworkSolutionsEVServerCA.crt WWW.YOURDOMAIN.COM.crt |
Network Solutions does not make it easy on you – in the install docs they tell you there is yet […]
(NOT how to tuna fish) Added to httpd.conf: [code] StartServers 50 MinSpareServers 15 MaxSpareServers 30 MaxClients 225 MaxRequestsPerChild 4000 [/code]