gpt4 book ai didi

symfony - 上游发送不支持的协议(protocol)版本

转载 作者:行者123 更新时间:2023-12-04 18:41:52 25 4
gpt4 key购买 nike

我正在尝试在 nginx 上设置 symfony。
下面是配置——

upstream phpfcgi {
server 127.0.0.1:9000;
# server unix:/var/run/php5-fpm.sock; #for PHP-FPM running on UNIX socket
}
server{
listen 80;
server_name xxy.xxy.com;
root /home/abcdef/website/current/web;
location / {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;
}

location @rewriteapp {
# rewrite all to app.php
rewrite ^(.*)$ /app.php/$1 last;
}

location ~ ^/(app|app_dev|config)\.php(/|$) {
fastcgi_pass phpfcgi;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}

error_log /var/log/nginx/project_error.log;
access_log /var/log/nginx/project_access.log;
}

我收到此错误
2013/12/12 11:23:55 [error] 25515#0: *5 upstream sent unsupported FastCGI protocol version: 60 while reading response header from upstream, client: 111.84.98.65, server: xxy.xxy.com, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "xxy.xxy.com"

有人可以帮我吗?

最佳答案

查看

netstat -tap

查看其他应用程序是否正在监听端口 9000。如果是,请尝试杀死它
kill -l PID

或更改 nginx 配置中的端口。当配置的端口已被使用时,您的错误通常会发生。

关于symfony - 上游发送不支持的协议(protocol)版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20535076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com