English 中文(简体)
nginx+fastCGI在几次刷新后停止为php提供服务器
原标题:nginx + fastCGI stops servering php after a couple of refreshes

我用nginx和fastCGI安装了一个新的CentOS服务器。我遵循了这篇linode文章,安装并配置了所有内容http://library.linode.com/lemp-guides/centos-5/。它似乎工作得很好,直到我刷新页面几次。2刷新后,nginx刚刚停止提供php,并给了我一个错误。如果我在不同的浏览器中加载php页面,它将再次工作,直到我刷新为止。会话可以发出的请求数量是否存在某种任意限制?

我是nginx的新手。我对Apache的配置更加得心应手。我确信这只是nginx.conf中的一些内容。但除了将位置指向php所在的目录之外,我没有更改/etc/nginx.conf的任何默认配置。

我认为这并不重要,但它正在运行一个代码点火器应用程序。

谢谢

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签