blob: ad24cbbe4dbe299db5a540a3def4718aba106c0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# /etc/httpd/conf/extra/httpd-zm.conf
# Config for zoneminder web app
Alias /zm "/srv/zoneminder/www"
<Directory "/srv/zoneminder/www">
Options -Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin "/srv/zoneminder/cgi-bin"
<Directory "/srv/zoneminder/cgi-bin">
AllowOverride All
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
|