配置Nginx支持php

nginx.conf中配置:

server {
listen 8001;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /opt/nginx/html;
index index.html index.php;
}
#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 /opt/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
}


管理FastCGI进程:

启动两种方式:
/usr/local/php/bin/php-cgi --fpm
或者
/usr/local/php/sbin/php-fpm start
平滑启动nginx程序:
kill -HUP `/opt/nginx/logs/nginx.pid`
优化nginx中FastCGI参数:
fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m;  
#为fastcgi缓存制定一个文件路径、目录结构、关键字区域存储时间和非活动删除时间
fastcgi_connect_timeout 300;
#指定连接到后端的fastcgi的超时时间
fastcgi_send_timeout 300;
#指定向fastcgi传输请求的超时时间
fastcgi_read_timeout 300;
#指定接收fastcgi应答的超时时间
fastcgi_buffer_size 64k;
#读取fastcgi应答第一部分需要多大的缓存
fastcgi_buffers 4 64k;
#指定本地需要多少和多大的缓冲区来缓冲fastcgi的应答请求
fastcgi_busy_buffers_size 128k;
#默认是fastcgi_buffer的两倍
fastcgi_temp_file_write_size 128k;
#表示写入缓存文件时使用多大的数据块
fastcgi_cache TEST;
#开启缓存并指定名称
fastcgi_cache_valid 200 302 1h;
#指定应答代码的缓存时间
fastcgi_cache_valid 301 1d;  
fastcgi_cache_valid any 1m;





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值