Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The following page has been changed by slive: http://wiki.apache.org/httpd/Recipes/RedirectSSL ------------------------------------------------------------------------------ {{{ NameVirtualHost *:80 <VirtualHost *:80> - ServerName mysite.example.com + ServerName mysite.example.com - DocumentRoot /usr/local/apache2/htdocs + DocumentRoot /usr/local/apache2/htdocs - Redirect permanent /secure https://mysite.example.com + Redirect permanent /secure https://mysite.example.com/secure </VirtualHost> <VirtualHost _default_:443> - ServerName mysite.example.com + ServerName mysite.example.com - DocumentRoot /usr/local/apache2/htdocs + DocumentRoot /usr/local/apache2/htdocs - SSLEngine On + SSLEngine On # etc... </VirtualHost>
