zoneminder/web/zmApache.conf.in

27 lines
816 B
Plaintext

#
# Sample configuration file for running ZoneMinder as name based virtual host
# Some values may need to manually adjusted to suit your setup
#
<VirtualHost *:80>
ServerName @WEB_HOST@
ServerAdmin webmaster@localhost
DocumentRoot "@WEB_PREFIX@"
<Directory "@WEB_PREFIX@">
Options FollowSymLinks
</Directory>
ScriptAlias /cgi-bin/ "@CGI_PREFIX@"
<Directory "@CGI_PREFIX@">
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
</Directory>
# May be required if libraries are installed in unusual places
#SetEnv LD_LIBRARY_PATH @FFMPEG_PREFIX@/@LIB_ARCH@
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog @LOGDIR@/zm-error.log
CustomLog @LOGDIR@/zm-access.log combined
</VirtualHost>