今天在配置zabbix,之前zabbix是使用apache+php的,现在想换成nginx+php-fpm,nginx配置如下:
location /zabbix/ {
alias /usr/share/zabbix/;
index index.php;
error_page 403 404 502 503 504 /zabbix/index.php;
location ~ .php$ {
expires epoch;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .(jpg|jpeg|gif|png|ico)$ {
access_log off;
expires 33d;
}
}
发现通过WEB访问zabbix PHP程序时,显示是404未找到文件的错误。