Skip to content
Snippets Groups Projects
Commit 9662879e authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fixed: Permissions

parent e4b89779
No related branches found
No related tags found
No related merge requests found
# To disable access
<IfVersion >= 2.3>
Require all denied
</IfVersion>
<IfVersion < 2.3>
Order deny,allow
Deny from all
Order deny, allow
Denied from all
</IfVersion>
# To allow access
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order allow, deny
Allow from all
</IfVersion>
......@@ -14,8 +14,13 @@ Alias /dolibarr /usr/share/dolibarr/htdocs
# Directory for web pages
<Directory /usr/share/dolibarr/htdocs>
Order deny,allow
Allow from all
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order allow, deny
Allow from all
</IfVersion>
DirectoryIndex index.php
Options +FollowSymLinks +Indexes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment