2

私はUbuntu 13.04 x64サーバーで作業しており、NGINXとPHP-FPMを正常にインストールし、それらも機能していることを確認しました。しかし、構成ファイルを Yii の構成に合わせて変更した後、空白のページが表示されます。

これは私のNGINX構成ファイルです:

#config file

server {
        listen   80;
set $host_path "/usr/share/nginx/html/something";

        server_name something.com;

  root /usr/share/nginx/html/something;

set $yii_bootstrap "index.php";
 charset utf-8;

     location / {
        index  index.html $yii_bootstrap;
        try_files $uri $uri/ /$yii_bootstrap?$args;
}

       location ~ ^/(protected|framework|themes/\w+/views) {
        deny  all;
}
    #avoid processing of calls to unexisting static files by yii
    location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
        try_files $uri =404;
    }


        location ~ \.php$ {
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:

 set $fsn /$yii_bootstrap;
        if (-f $document_root$fastcgi_script_name){
            set $fsn $fastcgi_script_name;
        }
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;

        }

}

これは機能する元の構成ファイルです。

server {
        listen   80;


        root /usr/share/nginx/html;
        index index.php index.html index.htm;

        server_name campusplugin.com;

        location / {
                try_files $uri $uri/ /index.html;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
              root /usr/share/nginx/html;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
                #fastcgi_pass 127.0.0.1:9000;
location / {
                try_files $uri $uri/ /index.html;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
              root /usr/share/nginx/html;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;

        }

}

ルートで指定されたそれぞれのディレクトリにファイルを保持しているため、ルートディレクトリを変更しました。

しかし、サイトにアクセスしようとすると、何もない空白のページが表示されます。どこが間違っているのかわかりません。私はNGINXを初めて使用します。

私を助けてください。

4

1 に答える 1