使用swoole框架还用 nginx吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用swoole框架还用 nginx吗相关的知识,希望对你有一定的参考价值。
参考技术A nginx不支持thinkphp的原因1
ThinkPHP支持通过PATHINFO和URL rewrite的方式来提供友好的URL,只需要在配置文件中设置 'URL_MODEL' => 2 即可。在Apache下只需要开启mod_rewrite模块就可以正常访问了,但是Nginx中默认是不支持PATHINFO的,所以nginx默认情况下是不支持thinkphp的。不过我们可以通过修改nginx的配置文件来让其支持thinkphp。
让nginx支持pathinfo,支持thinkphp
1
我们打开nginx的配置文件,如果是想某个站点支持,请打开对应站点的配置文件
如何让nginx支持ThinkPHP框架
2
我们注释掉配置文件中那些被我圈出来的语句(location ~ \.php$ ……这一段里面的),我们将对这部分进行重写!
如何让nginx支持ThinkPHP框架
3
将重写后的代码添加进去。
如何让nginx支持ThinkPHP框架
4
添加的代码如下:
.........................................
location /
if (!-e $request_filename)
rewrite ^/(.*)$ /index.php/$1 last;
break;
location ~ \.php
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$")
set $real_script_name $1;
set $path_info $2;
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
...................................本回答被提问者采纳
swoole和laravel-admin在nginx中配值端口转发
个人博客地址http://xgs888.top/post/view?id=95; swoole官方的解释PHP的异步、并行、高性能网络通信引擎,使用纯C语言编写,提供了PHP语言的异步多线程服务器,异步TCP/UDP网络客户端,异步MySQL,异步Redis,数据库连接池,AsyncTask,消息队列,毫秒定时器,异步文件读写,异步DNS查询。 Swoole内置了Http/WebSocket服务器端/客户端、Http2.0服务器端/客户端。 下面是对swoole的端口的配置,我的后台是采用了laravel的框架,有序需要用到多个任务异步执行和多个线程的,所以选择了 swoole这个php的扩展,是项目得到了很好的效果; 所有的php请求交给swoole来处理;静态文件是nginx来处理; swoole中的文档给的那个方式没有配置成功,自己捣鼓了一个配置,做个记录 server { listen 8084 default_server; location / { root /var/www/html/laravel-admin/public/; index index.html index.htm; } location ~ \.php$ { proxy_http_version 1.1; proxy_set_header Connection "keep-alive"; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://127.0.0.1:9501; } location ~ /\.(?!well-known).* { deny all; } }
以上是关于使用swoole框架还用 nginx吗的主要内容,如果未能解决你的问题,请参考以下文章