fix alias order for elastic-recheck

Apache aliases need to nest from the most narrow to the most
broad. I had these backwards, thus breaking the web console.

While it was hot fixed, this is the permanent fix.

Change-Id: I26209dea29ce2d29701b81a53360fff358ccdd77
This commit is contained in:
Sean Dague 2013-12-06 18:54:41 -05:00
parent ac3c3d7412
commit cf93189f14
1 changed files with 10 additions and 8 deletions

View File

@ -39,14 +39,8 @@ NameVirtualHost <%= vhost_name %>:<%= port %>
</Directory>
# Sample elastic-recheck config file, adjust prefixes
# per your local configuration
Alias /elastic-recheck /usr/local/share/elastic-recheck
<Directory /usr/local/share/elastic-recheck>
AllowOverride None
Order allow,deny
allow from all
</Directory>
# per your local configuration. Because these are nested
# we need the more specific one first.
Alias /elastic-recheck/data /var/lib/elastic-recheck
<Directory /var/lib/elastic-recheck>
AllowOverride None
@ -54,6 +48,14 @@ NameVirtualHost <%= vhost_name %>:<%= port %>
allow from all
</Directory>
Alias /elastic-recheck /usr/local/share/elastic-recheck
<Directory /usr/local/share/elastic-recheck>
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/<%= name %>_error.log
LogLevel warn
CustomLog /var/log/apache2/<%= name %>_access.log combined