Difference between revisions of "Talk:Zoneminder(HOW TO)"
From SME Server
Jump to navigationJump to search (Some unsorted notes on Apache config) |
m |
||
Line 1: | Line 1: | ||
Apache config: | Apache config: | ||
− | Alias /zm "/usr/share/zoneminder/www" | + | Alias /zm "/usr/share/zoneminder/www" |
− | <Directory "/usr/share/zoneminder/www"> | + | <Directory "/usr/share/zoneminder/www"> |
SSLRequireSSL | SSLRequireSSL | ||
Options -Indexes MultiViews FollowSymLinks | Options -Indexes MultiViews FollowSymLinks | ||
Line 10: | Line 10: | ||
AuthBasicProvider external | AuthBasicProvider external | ||
Allow from all | Allow from all | ||
− | </Directory | + | </Directory> |
− | |||
− | |||
+ | <Directory "/usr/libexec/zoneminder/cgi-bin"> | ||
SSLRequireSSL | SSLRequireSSL | ||
AddHandler cgi-script cgi pl | AddHandler cgi-script cgi pl | ||
Line 20: | Line 19: | ||
Order allow,deny | Order allow,deny | ||
Allow from all | Allow from all | ||
− | </Directory> | + | </Directory> |
Revision as of 20:09, 26 September 2016
Apache config:
Alias /zm "/usr/share/zoneminder/www" <Directory "/usr/share/zoneminder/www"> SSLRequireSSL Options -Indexes MultiViews FollowSymLinks AllowOverride All Order allow,deny AddType application/x-httpd-php .php AuthBasicProvider external Allow from all </Directory>
<Directory "/usr/libexec/zoneminder/cgi-bin"> SSLRequireSSL AddHandler cgi-script cgi pl AllowOverride All Options ExecCGI FollowSymLinks Order allow,deny Allow from all </Directory>