MACで新しいnginxを構成したいのですが、常に[error] 200#0: *79 FastCGI sent in stderr: "Primary script unknown"
..設定で何がおかしいのかわかりません。これは私のnginx.confファイルです:
#user RobDee;
worker_processes auto;
#error_log logs/error.log;
#error_log logs/error.log info;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format #main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log;
error_log logs/error.log;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name local.mydomain.co.uk local.beer.telegraph.co.uk;
#charset koi8-r;
#access_log logs/Host.access.log main;
location / {
root /Users/RobDee/workspace/beer/web;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual Host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
server {
listen 443 ;
server_name local.mydomain.co.uk local.beer.telegraph.co.uk;
ssl on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_certificate /usr/local/etc/nginx/cert.pem;
ssl_certificate_key /usr/local/etc/nginx/cert.key;
gzip_disable "msie6";
gzip_types text/plain application/xml application/x-javascript text/css application/json text/javascript;
access_log /usr/local/var/log/nginx/access.log;
error_log /usr/local/var/log/nginx/error.log;
log_not_found off;
root /Users/RobDee/workspace/beer/web;
location /.htpasswd
{
return 403;
}
location ~ \.css {
root /Users/RobDee/workspace/beer/web;
expires max;
}
location ~* \.(jpg|jpeg|png|gif|ico|js|woff|woff2|ttf)$ {
root /Users/RobDee/workspace/beer/web;
access_log off;
expires max;
}
location ~* \.(js|css)$ {
expires 1y;
log_not_found off;
}
location /
{
root /Users/RobDee/workspace/beer/web;
try_files $uri $uri/ /app_dev.php$is_args$args;
index app_dev.php;
}
location ~ \.php$ {
root /Users/RobDee/workspace/beer/web;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index /Users/RobDee/workspace/beer/web/app_dev.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
fastcgi_read_timeout 3000;
}
}
include servers/*;
}
多分誰かが私の設定でいくつかのエラーを見るでしょう。
「プライマリスクリプトが不明」は、ほとんどの場合、SCRIPT_FILENAME
の値が間違っていることを意味します。
問題はおそらく次の3行です。
root /Users/RobDee/workspace/beer/web;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
$document_root
を設定し、それを/scripts
として配線します。どっち?
通常のnginx
サーバーブロックでは、サーバーブロックの上部近くでroot
を1回設定し、すべての(またはほとんどの)location
ブロックが同じ値を継承できるようにします。必要な場合のみオーバーライドしてください。詳細は このドキュメント を参照してください。
SCRIPT_FILENAME
の通常の形式は次のいずれかです。
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $request_filename;
あなたの構成でどれが同じ値に等しいでしょう。 $document_root
はroot
ディレクティブの値によって定義されることに注意してください。
最後に、fastcgi_params
lastを含めても問題ない場合があります。 fastcgi_params
の一部のバージョンでは、明示的に定義したfastcgi_param
ステートメントの定義が競合している可能性があります。明示的なfastcgi_param
ステートメントの前に、常にファイルを含める必要があります。
例えば:
server {
...
root /Users/RobDee/workspace/beer/web;
...
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_read_timeout 3000;
}
}
fastcgi_index
ディレクティブは、このコンテキストでは意味がありません。