我正在使用Centos和Plesk运行VPS服务器。 服务器正常运行,在Nginx + php-fpm设置上。
因此,网站服务正确,但当用户尝试访问其webemail(已安装的圆形多维数据集工具)时,无效。
我目前用于网络邮件的nginx conf是:
server {
listen [my server ip...]:80;
server_name webmail.* roundcube.webmail.* horde.webmail.* atmail.webmail.*;
client_max_body_size 20m;
client_body_buffer_size 128k;
proxy_read_timeout 90;
location / {
root /usr/share/psa-roundcube;
index index.php index.html index.htm;
location ~ \.php$
{
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $request_filename;
include /etc/nginx/fastcgi_params;
fastcgi_keep_conn on;
fastcgi_split_path_info ^(.+\.php)(.*)$;
}
}
}
有什么不对?
答案 0 :(得分:1)
这个代码片段适用于CentOS 6.5。 SCRIPT_FILENAME
不同,且fastcgi_index
存在。想想就是这样。
location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
}
我已经从here复制了它并且它有效。这个特定示例中的其他指令非常值得注意/复制以加强plesk设置。