1
vilison 2015-01-06 13:13:10 +08:00 via iPhone
配置php的运行环境,nginx反向访问
|
2
angelsky11 OP @vilison 这个不太懂啊,能否说的明白点,谢谢了
|
3
vilison 2015-01-06 13:17:59 +08:00 via iPhone
服务器上配了Apache 或者 php-fpm没有?
|
4
tuuuz 2015-01-06 13:52:55 +08:00
不知道能不能解决你的问题:
[Nginx目录浏览功能] http://blog.licess.com/nginx-autoindex/ |
5
bingx86 2015-01-06 14:28:53 +08:00
配置后端CGI了木有,如php-fpm ?
|
6
lizhijun 2015-01-06 14:37:22 +08:00
php解析有问题
|
7
hzqim 2015-01-06 15:23:49 +08:00
nginx 默认只解析静态 html ,如果要解析 PHP ,首先要安装 PHP ,之后在server段添加如下代码
location ~ \.php$ { fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; } 即这个样子: server { listen 80; root your_web_root; index index.php index.html index.htm; server_name XXX.com; location / { 这里填rewrite lules,如果不需要就留空 } location ~ \.php$ { fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; } } |
8
angelsky11 OP @hzqim 我按照这两篇文章 http://huoding.com/2013/10/23/290 http://www.cnblogs.com/quinnxu/archive/2013/05/08/3066274.html
里面参考的修改了一下,但是启动好以后再访问还是不行,还是之前的问题,下载index.php文件 php5-fpm运行正常 |
9
sunshower 2015-01-06 19:08:09 +08:00
|