Nginx用来处理FastCGI的模块。FastCGI是什么?现在LNMP架构里面,PHP一般是以PHP-CGI的形式在运行,它就是一种FastCGI,我们在进程中看到的PHP-FPM是PHP-CGI的管理调度器。
四个常见、重要的配置项
fastcgi_pass
设置FastCGI服务,其值可以是一个域名、IP地址:端口、或者是一个Unix的Socket文件。
同时,它也只支持一个FastCGI服务集群。
# TCP形式传递
fastcgi_pass localhost:9000;
# Socket形式传递
fastcgi_pass unix:/tmp/fastcgi.socket;
# 传递给集群
upstream cloud {
server cgi_1.cloud.com;
server cgi_2.cloud.com;
}
fastcgi_pass cloud;
fastcgi_param
设置一个传递给FastCGI服务的参数,可以是文本或者是变量。
# 例如在接入层Nginx上面传递如下5个参数
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;
# 那么在FastCGI上面,例如PHP-CGI上面就可以通过$_SERVER这个超全局变量获取。
$_SERVER['REMOTE_ADDR']
$_SERVER['REMOTE_PORT']
$_SERVER['SERVER_ADDR']
$_SERVER['SERVER_PORT']
$_SERVER['SERVER_NAME']
fastcgi_index
当请求以/结尾的时候,会将请求传递给所设置的index.php文件处理。
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name;
fastcgi_split_path_info
Nginx默认获取不到PATH_INFO的值,得通过fastcgi_split_path_info指定定义的正则表达式来给$fastcgi_path_info赋值。
其正则表达式必须要有两个捕获。
第一个捕获的值会重新赋值给$fastcgi_script_name变量。
第二个捕获到的值会重新赋值给$fastcgi_path_info变量。
例子:
location ~ ^(.+\.php)(.*)$ {
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param SCRIPT_FILENAME /path/to/php$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
原始请求是 /show.php/article/0001。
通过分割,FastCGI得到的结果是:
SCRIPT_FILENAME: /path/to/php/show.php
PATH_INFO: /article/0001
相关推荐
、limit_conn_module、ngx_http_limit_req_module、ngx_http_access_module、ngx_http_auth_basic_module、ngx_http_fastcgi_module、ngx_http_gzip_module、ngx_http_proxy_module、ngx_http_upstream_module、ngx_...
* ngx_http_fastcgi_module * ngx_http_flv_module * ngx_http_geo_module * ngx_http_geoip_module * ngx_http_grpc_module * ngx_http_gunzip_module * ngx_http_gzip_module * ngx_http_gzip_static_module * ngx...
11. ngx_http_fastcgi_module:用于处理PHP请求,将请求以FastCGI协议转发给php-fpm处理。 12. ngx_http_uwsgi_module:处理Python应用的请求,通过uwsgi协议与Python服务器交互。 13. ngx_http_headers_module:...
Lua-Nginx-Module由OpenResty团队开发,旨在提供一种轻量级、高效且易于使用的机制,使开发者能够在Nginx内部处理复杂的业务逻辑,如动态内容生成、流量控制、API网关等功能,从而避免了传统的CGI或FastCGI等模型...
)要求安装./configure --add-module=/path/to/ngx_http_store_plusplus --add-module=/path/to/ngx_consistent_hash 指令store_plusplus 语法: store_plusplus; 默认值: - 上下文:位置打开目录添加或删除界面。...
--add-module=/usr/local/src/ngx_http_proxy_connect_module ``` - **编译并安装** ```shell make sudo make install ``` #### 4. 配置Nginx正向代理 ##### 4.1 HTTP正向代理配置 在`/etc/nginx/nginx.conf...
--add-module=../ngx_cache_purge-2.3 make make install ``` - **--prefix**: 指定安装路径。 - **--with-http_ssl_module**: 启用SSL支持。 - **--with-http_stub_status_module**: 启用状态监控模块。 - **--...
Nginx-RTMP-Module使得Nginx能够接收并分发RTMP流,支持HLS(HTTP Live Streaming)切片,提供了一种高效、可靠的直播解决方案。 【Nginx-RTMP-Module核心功能】 1. **RTMP服务器**:Nginx-RTMP-Module可以作为...
./configure --prefix=/usr/local/nginx-1.6.0 --add-module=../nginx-sticky-module-1.25 --without-http_ssi_module --without-http_autoindex_module --without-http_fastcgi_module --with-...
* ngx_http_fastcgi_module:FastCGI 代理 这些模块可以实现 URL 重写、访问控制、SSL 加密、FastCGI 代理等功能。 3. 中间件 中间件是指位于客户端和服务器端之间的软件组件,负责处理请求和响应。常见的中间件...
这个压缩包包含了ngx_php模块的源代码,它允许Nginx服务器直接处理PHP脚本,而无需通过FastCGI或其他外部进程。这种集成提供了更高的性能和效率,尤其在高并发的Web服务环境中。 Nginx是一款流行的开源HTTP服务器,...
- 社区提供许多第三方模块,如缓存模块(ngx_http_memcached_module、ngx_http_fastcgi_cache_module)、限速模块(ngx_http_limit_conn_module、ngx_http_limit_req_module)等,可根据需求选择安装。 6. **维护...
在Nginx中,可以使用ngx_http_fastcgi_module。配置文件中需要指定SpeedyCGI的监听地址和CGI程序的位置。 为了确保SpeedyCGI的高效运行,需要关注以下几点: - 调整并发进程数:根据服务器资源和预期负载设置适当的...
例如,FastCGI处理模块(ngx_http_fastcgi_module)在处理PHP等动态内容时,可能依赖于libfastcommon提供的底层功能。 "压缩包子文件的文件名称列表"列出了"nginx-1.8.0.tar.gz"和"libfastcommon-1.0.7.tar.gz",这...
在实际应用中,Ruby-FCGI通常配合Web服务器的FastCGI模块一起使用,如mod_fastcgi for Apache或ngx_http_fastcgi_module for Nginx。你还需要配置服务器,指定Ruby脚本的路径,以及如何处理FastCGI请求。 总的来说...
- **处理模块配置**:接着处理由 `ngx_http_module_t` 定义的配置指令。具体的执行顺序为:`opre` -> `ocreate_main_conf` -> 执行 `ngx_command_t` 定义的函数(被视为 `init_main_conf` 的自动处理部分)-> `...
- ngx_http_rewrite_module:URL重写模块。 - ngx_http_proxy_module:反向代理模块。 - ngx_http_gzip_module:GZIP压缩模块。 - ngx_http_upstream_hash_module:基于哈希的负载均衡策略。 **六、Nginx 与 PHP 的...
- `ngx_http_addition_module`:添加自定义头部信息。 **使用场景** Nginx广泛应用于各类网站和应用程序,包括: - 静态内容托管:例如图片、视频服务。 - 高并发网站:如新闻、论坛、电子商务平台。 - API网关:...
./configure --user=www --group=www --add-module=../ngx_cache_purge-1.0 --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module make && make install ``` **4. Nginx ...
在文件 `/nginx/src/http/ngx_http_header_filter_module.c` 中,修改以下内容: ``` static u_char ngx_http_server_string[] = "Server: linux" CRLF; ``` 安装 MySQL 使用以下命令安装 MySQL 8.0: ``` yum ...