1.Nginx配置静态网站:
http://blog.csdn.net/ljp1919/article/details/72833982
(Linux 详细 )(有些细节不明确)
http://www.cnblogs.com/kunhu/p/3633002.html
(Linux 安装) (比较好)
http://www.cnblogs.com/skyblue/archive/2013/05/13/3075900.html
问题:
安装步骤:
根据:http://www.cnblogs.com/skyblue/archive/2013/05/13/3075900.html
来安装:
已经安装了gcc 和 gcc-c++,但是还是报这个错:
图片.png
解决方法:
vim Makefile
找到清除方法,清除掉:
rm -rf Makefile objs
然后重新编译:
make
make install
安装成功启动的时候,查找执行文件和配置文件:
这个是原文档:
/opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf
我们找我们的nginx执行文件和配置文件:
whereis nginx
找到:
/usr/local/nginx/sbin/nginx
/usr/local/nginx/conf/nginx.conf # 一般.conf就是配置文件
启动:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
查看是否有这个进程:
[root@localhost conf]# ps aux | grep nginx
root 24723 0.0 0.0 20816 584 ? Ss 08:06 0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody 24724 0.0 0.0 21220 1028 ? S 08:06 0:00 nginx: worker process
root 24770 0.0 0.0 112676 984 pts/1 S+ 08:08 0:00 grep --color=auto nginx
启动了nginx,但是网站访问不到:
解决方法,关闭防火墙:
systemctl status firewalld # 查看状态
systemctl stop firewalld
上传文件:使用FileZilla软件。
网友评论