blob: cdb7722dcc0970a9f20e5132df48286d8ff2dd52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# /etc/httpd/conf/extra/httpd-zm.conf
# Config for zoneminder web app
Alias /zm "/srv/http/zoneminder"
<Directory "/srv/http/zoneminder">
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 /cgi-bin "/srv/http/cgi-bin"
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options +ExecCGI +FollowSymLinks
Order allow,deny
Allow from all
</Directory>
|