我正在尝试在我的 nginx 服务器 hhvm 上设置 laravel 应用程序的各种设施,但经过大量研究和多次尝试后仍未能成功。
有人能帮我吗?这是我当前的设置:
server {
listen 80;
server_name 178.13.1.230;
root /home/callcenter/public_html/gateway;
location / {
index index.html index.php;
}
location /crm {
root /home/callcenter/public_html/gateway/crm/public;
#rewrite ^/crm/(.*)$ /$1 break;
index index.php index.html;
try_files $uri $uri/ /index.php$is_args$args /index.php?$query_string;
}
location ~ /crm/.+\.php$ {
root /home/callcenter/public_html/gateway/crm/public;
#rewrite ^/crm/(.*)$ /$1 break;
include /etc/nginx/fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include /etc/nginx/hhvm;
#fastcgi_pass unix:/var/run/hhvm/hhvm.sock;
}
}
编辑
请原谅我的注意力不集中,确实没有让问题解释正确。
当我访问 178.13.1.230/crm 时,服务器的反应就像我试图“直接下载”文件一样
我需要的是在同一台服务器上设置多个 laravel 应用程序,并通过如下 URL 访问它们:
fastcgi 行已被注释,正在被 hhvm.conf 包含的内容替换。
感谢您的帮助!
以下是所含文件的副本:
/etc/nginx/hhvm.conf
location ~ \.(hh|php)$ {
fastcgi_keep_conn on;
fastcgi_pass unix:/var/run/hhvm/hhvm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /crm/.+\.(hh|php)$ {
fastcgi_keep_conn on;
fastcgi_pass unix:/var/run/hhvm/hhvm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
/etc/nginx/fastcgi.conf
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;
答案1
您的问题中没有太多信息(关于什么不“起作用”:您期望什么但没有发生?此外,其中包含两个文件,但您没有显示它们的内容)。
无论如何,我不会指望这个配置能够工作(至少 php 文件不能),因为你没有将任何东西传递给 php-fpm(或 hhvm),匹配的行被注释掉了。
现在我不希望这个配置起作用,因为您显示 /etc/nginx/hhvm.conf 但包含 /etc/nginx/hhvm(这是拼写错误吗?)。
另外,您使用 /etc/nginx/fastcgi.conf,但 /etc/nginx/hhvm.conf 包含一个 fastcgi_params 文件。这看起来很复杂,但也许是故意的?您是否有一个定义正确参数的 fastcgi_params 文件?
最后,我会将 hhvm.conf 包含在服务器块中,而不是位置块内。
因此我会尝试这个:
server {
listen 80;
server_name 178.13.1.230;
root /home/callcenter/public_html/gateway;
location / {
index index.html index.php;
}
location /crm {
root /home/callcenter/public_html/gateway/crm/public;
index index.php index.html;
try_files $uri $uri/ /index.php$is_args$args /index.php?$query_string;
}
include /etc/nginx/hhvm.conf;
}
}
但是如果你没有 fastcgi_params 文件,它就无法工作。(我可能只使用一个 fastcgi_params 文件:将 fastcgi.conf 重命名为 fastcgi_params 或反之亦然)。
我猜你已经确定 hhvm 正在运行、监听你定义的套接字并且运行良好。