wiki/serveur/apache.mdwn

19 lines
327 B
Plaintext
Raw Permalink Normal View History

2014-01-26 06:01:19 +00:00
# Apache2
## Force https
<VirtualHost *:80>
ServerName %{ServeurName %}
RewriteEngine on
ReWriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]
</VirtualHost>
<VirtualHost *:443>
ServerName %{ServeurName %}
...
</VirtualHost>