]> Raphaƫl G. Git Repositories - acme/blobdiff - www/example.com.conf
Final bin files
[acme] / www / example.com.conf
diff --git a/www/example.com.conf b/www/example.com.conf
new file mode 100644 (file)
index 0000000..ce8747b
--- /dev/null
@@ -0,0 +1,20 @@
+# Virtual host configuration
+<VirtualHost *:80>
+       # Set server name
+       ServerName example.com
+
+       # If rewrite module is available (or <IfModule mod_rewrite.c>)
+       <IfModule rewrite_module>
+               # Start rewrite engine
+               RewriteEngine on
+
+               # Inherit acme.conf rules
+               RewriteOptions InheritBefore
+
+               # Force redirection on https version
+               ## Only if https is disabled
+               ##RewriteCond %{HTTPS} off
+               ## Rewrite acme uri on php script
+               ##RewriteRule (/.*) https://%{SERVER_NAME}$1 [R=301,L]
+       </IfModule>
+</VirtualHost>