]> git.p6c8.net - jirafeau.git/blobdiff - README.md
Changed JIRAFEAU_VERSION so that we can identify that this is a development vesion
[jirafeau.git] / README.md
index 6ef0eedb9aba16840897b4a769002630aa19a8f0..7d89261b18fa5a9f7cef5d6d01d6816e50d7bcbb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -101,9 +101,19 @@ You have several options:
 - Move var folder to a place on your server which can't be directly accessed
 - Disable automatic listing on your web server config or place a index.html in var's sub-directory (this is a limited solution)
 
-If you are using Apache, you can add the following line to your configuration to prevent people to access to your `var` folder:
+If you are using Apache, you can add the following lines to your configuration to prevent people to access to your `var` folder:
 
-`RedirectMatch 301 ^/var-.* http://my.service.jirafeau`
+```apache
+<LocationMatch "^/var-*">
+    Require all denied
+</LocationMatch>
+```
+
+Or you can put a `.htaccess` file containing this into your `var` folder:
+
+```apache
+Require all denied
+```
 
 If you are using nginx, you can add the following to your $vhost.conf:
 

patrick-canterino.de