Add apache2.4 acls and permission to gerrit static dir

We serve robots.txt out of the gerrit static dir, but did not allow
apache to access it.  This corrects that.

Change-Id: Ibf7338641247bb5f66e3a9d7be92ce45a72da1fd
This commit is contained in:
James E. Blair 2016-09-26 08:52:11 -07:00
parent 5c44d09dc7
commit 0f8fc12999
1 changed files with 7 additions and 0 deletions

View File

@ -89,10 +89,17 @@
<% end -%>
<Directory /home/gerrit2/review_site/git/>
Require all granted
Order allow,deny
Allow from all
</Directory>
<Directory /usr/lib/git-core>
Require all granted
Allow from all
Satisfy Any
</Directory>
<Directory /home/gerrit2/review_site/static/>
Require all granted
Allow from all
Satisfy Any
</Directory>