33 lines
882 B
Nginx Configuration File
33 lines
882 B
Nginx Configuration File
|
location /zm/cgi-bin {
|
||
|
gzip off;
|
||
|
alias /usr/lib/zoneminder/cgi-bin;
|
||
|
|
||
|
include /etc/nginx/fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||
|
fastcgi_pass unix:/var/run/fcgiwrap.socket;
|
||
|
}
|
||
|
|
||
|
location /zm {
|
||
|
# if ($scheme ~ ^http:){
|
||
|
# rewrite ^(.*)$ https://$host$1 permanent;
|
||
|
# }
|
||
|
|
||
|
gzip off;
|
||
|
alias /usr/share/zoneminder/www;
|
||
|
index index.php;
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
if (!-f $request_filename) { return 404; }
|
||
|
expires epoch;
|
||
|
include /etc/nginx/fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||
|
}
|
||
|
|
||
|
location ~ \.(jpg|jpeg|gif|png|ico)$ {
|
||
|
access_log off;
|
||
|
expires 33d;
|
||
|
}
|
||
|
}
|