2013-09-16 05:33:09 +08:00
|
|
|
# When using Zoneminder's own authentication, recorded CCTV images are
|
|
|
|
# accessible from the web directly without passing the authentication. This
|
|
|
|
# means any attacker could see your CCTV images without a password. In order
|
|
|
|
# to avoid this you can disable Zoneminder's authentication and configure
|
|
|
|
# standard Apache authentication (see the Apache documentation for details on
|
|
|
|
# this).
|
|
|
|
#
|
|
|
|
# If you still wish to use Zoneminder's own authentication, or have an
|
|
|
|
# internal site which needs no authentication, you need to delete the line
|
|
|
|
# marked below and restart Apache.
|
|
|
|
|
2015-02-15 22:23:28 +08:00
|
|
|
Alias /zm "@ZM_WEBDIR@"
|
|
|
|
<Directory "@ZM_WEBDIR@">
|
2013-09-16 05:33:09 +08:00
|
|
|
Options -Indexes MultiViews FollowSymLinks
|
|
|
|
AllowOverride All
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
2015-02-09 07:56:44 +08:00
|
|
|
# ZoneMinder no longer uses short tags so this is safe to leave disabled
|
|
|
|
# php_value short_open_tag 1
|
2013-09-16 05:33:09 +08:00
|
|
|
</Directory>
|
|
|
|
|
2015-02-15 22:23:28 +08:00
|
|
|
ScriptAlias /cgi-bin/zm "@ZM_WEBDIR@"
|
|
|
|
<Directory "@ZM_WEBDIR@">
|
2013-09-16 05:33:09 +08:00
|
|
|
AllowOverride All
|
2015-08-14 09:23:52 +08:00
|
|
|
Options ExecCGI FollowSymLinks
|
2013-09-16 05:33:09 +08:00
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
</Directory>
|