0

Centos と Plesk で VPS サーバーを実行しています。サーバーは、Nginx + php-fpm セットアップで正常に動作しています。

そのため、Web サイトは正しく提供されますが、ユーザーがその Web メール ( roundcube ツールがインストールされている) にアクセスしようとすると、機能しません。

私の現在のウェブメール用の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)(.*)$;
        }
        }
}

何が間違っている可能性がありますか?

4

1 に答える 1