diff options
Diffstat (limited to 'pcr/zoneminder/httpd-zm.conf')
-rw-r--r-- | pcr/zoneminder/httpd-zm.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/zoneminder/httpd-zm.conf b/pcr/zoneminder/httpd-zm.conf new file mode 100644 index 000000000..8c6356aec --- /dev/null +++ b/pcr/zoneminder/httpd-zm.conf @@ -0,0 +1,20 @@ +# /etc/httpd/conf/extra/httpd-zm.conf +# Config for zoneminder web app + +Alias /zm "/usr/share/zoneminder/www" +<Directory "/usr/share/zoneminder/www"> + Options -Indexes MultiViews FollowSymLinks + AllowOverride None + Order allow,deny + Allow from all + # The code unfortunately uses short tags in many places + php_value short_open_tag On +</Directory> + +ScriptAlias /zm/cgi-bin "/usr/lib/zoneminder/cgi-bin" +<Directory "/usr/lib/zoneminder/cgi-bin"> + AllowOverride None + Options ExecCGI FollowSymLinks + Order allow,deny + Allow from all +</Directory> |