找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 80|回复: 8

windows下niginx+PHP

[复制链接]

14

主题

21

回帖

92

积分

注册会员

积分
92
发表于 2012-8-13 16:12:46 | 显示全部楼层 |阅读模式
有空再研究了看来,已经纠结了1天了~~先用apache 吧~~~
回复

使用道具 举报

14

主题

21

回帖

92

积分

注册会员

积分
92
 楼主| 发表于 2012-8-13 15:50:26 | 显示全部楼层
有没有配置成功的啊

回复

使用道具 举报

501

主题

9657

回帖

2万

积分

论坛元老

积分
20853
发表于 2012-8-13 15:53:30 | 显示全部楼层

Polymer_dg 发表于 2012-8-13 15:50



有没有配置成功的啊

阻塞问题问圈圈,

回复

使用道具 举报

501

主题

9657

回帖

2万

积分

论坛元老

积分
20853
发表于 2012-8-13 15:50:00 | 显示全部楼层

Polymer_dg 发表于 2012-8-13 15:15



并发啊!不能同时运行几个PHP,只能一个一个运行!

PHP进程和nginx配置有啥关系?
改php.ini或者php-fqm.conf
回复

使用道具 举报

130

主题

5117

回帖

1万

积分

论坛元老

积分
10658
发表于 2012-8-13 15:21:16 | 显示全部楼层
你说啥
回复

使用道具 举报

501

主题

9657

回帖

2万

积分

论坛元老

积分
20853
发表于 2012-8-13 15:15:00 | 显示全部楼层
并发 or 进程?
进程=worker_processes=1
并发=worker_connections*worker_processes=1024
回复

使用道具 举报

277

主题

8968

回帖

1万

积分

论坛元老

积分
18811
发表于 2012-8-13 15:07:29 | 显示全部楼层

lazyzhu 发表于 2012-8-13 15:13



并发 or 进程?
进程=worker_processes=1
并发=worker_connections*worker_processes=1024

并发啊!不能同时运行几个PHP,只能一个一个运行!
回复

使用道具 举报

14

主题

21

回帖

92

积分

注册会员

积分
92
 楼主| 发表于 2012-8-13 15:13:20 | 显示全部楼层

geyunbing 发表于 2012-8-13 15:13



蛋疼死了

求指教,

回复

使用道具 举报

14

主题

21

回帖

92

积分

注册会员

积分
92
 楼主| 发表于 2012-8-13 15:13:59 | 显示全部楼层
用apache就可以 并发  换nginx 就不行了~~

本帖最后由 Polymer_dg 于 2012-8-13 15:09 编辑

windows下niginx+PHP 怎么只能一个并发啊?

这个是测试连接:http://202.103.154.2:88/test.html

找遍了google 百度也没找到办法,求助各位大神~~~

nginx.conf配置

#user  nobody;
worker_processes  1;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

worker_rlimit_nofile 8192;

events {
   
    worker_connections  1024;
}


http {


        include       mime.types;
        default_type  application/octet-stream;
        log_format  main  '$remote_addr - $remote_user [$time_local] $request '
                      '"$status" $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';




        sendfile        on;
        #tcp_nopush     on;
        #keepalive_timeout  0;
        keepalive_timeout  65;
        gzip  on;

        server {
                listen         80;
                server_name     _;
                access_log      logs/access.log main;
                server_name_in_redirect  off;
                location / {
                            root  nginx/html;
                            index index.html;
                }
        }
    include vhosts/*.conf;
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Discuz! X

GMT+8, 2025-1-11 18:05 , Processed in 0.021268 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表