一、安装nginx[root@lnmp conf]# wget http://nginx.org/download/nginx-1.8.0.tar.gz[root@lnmp conf]# tar zxvf nginx-1.8.0.tar.gz[root@lnmp conf]# cd nginx-1.8.0[root@lnmp conf]# ./configure --prefix=/us
分类:
其他好文 时间:
2018-01-03 17:35:53
阅读次数:
170
与httpd类似,第一个被Nginx加载的虚拟主机就是默认主机。但与之不同的是,它还有一个配置用来标记默认虚拟主机。1、编辑nginx.conf[root@juispanconf]#vi/usr/local/nginx/conf/nginx.conf
location~\.php$
{
includefastcgi_params;
fastcgi_passunix:/tmp/php-fcgi.sock;
fa..
分类:
其他好文 时间:
2017-08-10 23:43:59
阅读次数:
203
server { listen 80 default_server; server_name localhost; index index.html index.htm index.php; root /usr/local/nginx/html; deny all; location ~ \.php ...
分类:
其他好文 时间:
2016-07-14 08:31:46
阅读次数:
143
我也不知道我题目表述的对不对。我也是刚学习。安装nginx 显示discuz的界面。我看了好几次视频,也没发现哪的问题。就是一直出现502的错误代码我又重新查了几次。觉得需要注意一下几点:1,关闭nginx默认虚拟主机 deny all;2,在本机中填写hosts配置;3,注意 nginx虚拟主机中...
分类:
Web程序 时间:
2015-01-23 11:02:37
阅读次数:
197