Select Git revision
linuxparty.sh
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
zabbix.conf 600 B
location /zabbix {
# if ($scheme ~ ^http:){
# rewrite ^(.*)$ https://$host$1 permanent;
# }
root /usr/share;
index index.php;
error_page 403 404 502 503 504 /zabbix/index.php;
location ~ \.php$ {
# if (!-f $request_filename) { return 404; }
# expires epoch;
# include /etc/nginx/fastcgi_params;
# fastcgi_index index.php;
# fastcgi_pass unix:/var/run/php5-fpm.sock;
include uwsgi_params;
uwsgi_modifier1 14;
uwsgi_pass unix:///run/uwsgi/app/zabbix/zabbix.sock;
}
location ~ \.(jpg|jpeg|gif|png|ico)$ {
access_log off;
expires 33d;
}
}