Merge pull request #1753 from jbehrends/docker_apache_fix

Docker - Fixed broken cgi-bin path in apache site conf.
This commit is contained in:
Andrew Bauer 2017-01-14 20:38:33 -06:00 committed by GitHub
commit b3ee97ad11
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
DocumentRoot /usr/local/share/zoneminder/www
DirectoryIndex index.php
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
ScriptAlias /cgi-bin/ /usr/local/libexec/zoneminder/cgi-bin/
<Directory />
Require all granted
</Directory>
<Directory "/usr/lib/cgi-bin">
<Directory "/usr/local/libexec/zoneminder/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted