排序
Nginx出现The plain HTTP request was sent to HTTPS port问题解决方法
一般在 vhost 配置中会有php解析的一段,如: location ~ .*.(php|php5)?$ { try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_param HTTPS $https if_not_empty; fastcgi_i...
nginx安装及配置支持php的教程(全)
pcre-7.8.tar.gz 正则表达式下载地址:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ nginx-0.7.26.tar下载地址:http://www.nginx.net/ php-5.2.6.tar.bz2下载地址:http://www.p...
Windows10本地搭建IIS+PHP+MYSQL+phpMyAdmin运行环境图文教程(也可用于服务器)
nginx基础配置说明一则
user nfsnobody nfsnobody; #使用的用户和组 worker_processes 8; #指定工作衍生进程数 error_log /usr/local/web/nginx.0.8.15/nginx_error.log crit; #日志记录的文件地址 pid /usr...
linux(centos5.5)/windows下nginx开启phpinfo模式功能的配置方法分享
经测试有效的相关配置主要内容如下: location ~ .php(.*)$ { fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; fastcgi_split_path_info ^(.+.php)(.*)$; fastcgi_param...
Nginx 安装笔记(含PHP支持、虚拟主机、反向代理负载均衡)
系统环境:RHEL5 [ 2.6.18-8.el5xen ] 软件环境: nginx-0.7.17 lighttpd-1.4.20.tar.gz pcre-6.6-1.1 pcre-devel-6.6-1.1 php-5.1.6-5.el5 参考下载地址: http://sysoev.ru/nginx/nginx-0.7.1...
解决Nginx + PHP(FastCGI)遇到的502 Bad Gateway错误
我让按照以下两个步骤去解决,最后在第2步中将FastCGI的timeout时间增加为300,问题解决: PS:比较羡慕迅雷的Web服务器,16G内存。 1、查看当前的PHP FastCGI进程数是否够用: netstat -anpo |...
IIS8 使用FastCGI配置PHP环境教程详解
FastCGI是一种高性能的CGI协议,可以让web服务器与动态语言程序保持长连接,提高网站性能。本文将详细介绍如何在IIS 8上使用FastCGI配置PHP环境。 1. 安装PHP 下载PHP的VC11 x86 Thread Safe版本,...
nginx 502 Bad Gateway 错误解决办法
一些运行在Nginx上的网站有时候会出现“502 Bad Gateway”错误,有些时候甚至频繁的出现。以下是小编搜集整理的一些Nginx 502错误的排查方法,供参考: Nginx 502错误的原因比较多,是因为在代...
Windows2003+IIS7 Express使用FastCgi运行php
想在windows 2003中好好跑php,又要节省内存,真是很为难的事情,考虑到IIS7.5 Express可以在WIN2003上跑,不但能以fastcgi的方式支持php,还自带Rewrite组件,只需简单改改web.config的rule规则...