赞
踩
yum install gcc -c++
yum install pcre pcre-devel
yum install zlib zlib-devel
yum install openssl openssl–devel
检查是否已有nginx find -name nginx
如果有,先卸载
从官网下载最新版的nginx源码包(wget http://nginx.org/download/nginx-1.13.5.tar.gz)
解压nginx压缩包 (tar -zxvf nginx-1.13.5.tar.gz)
cd nginx-1.13.5
接下来安装,使–prefix参数指定nginx安装的目录,make、make install安装
./configure $默认安装在/home/work/nginx 或者指定目录,./configure —prefix=***(想要安装的路径)
make install
安装完毕后,进入安装后目录便可以启动或停止它了
install过程中可能会遇到’GLIBC_2.14’ not found问题,解决参考 https://blog.csdn.net/clirus/article/details/62425498
更改配置
常用命令
启动 sbin/nginx
检查更改conf是否合法 sbin/nginx -t
加载新conf sbin/nginx -s reload
正常关闭或停止nginx nginx -s quit(好像是可以等正在处理的任务处理完)
快速停止或关闭Nginx:nginx -s stop
几个注意
- location里配的就是一个根路径,直接在url后面加层级,就可以访问对应层级下路径。譬如
location / {
root html;
index index.html index.htm;
}
访问ip:port就是访问html/index.html,访问ip:port/1/,就是访问html/1/index.html- 如果想展示文件夹下内容,需要配置(截图里有)参考https://www.jianshu.com/p/9006fc495f70
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;- 只有default里配置的文件格式会被默认展示,其余文件被访问到会被直接下载而不是在浏览器展示。因为文件是text格式的,需要改下default_type。参考https://www.geek-share.com/detail/2708231936.html
text文本因为mime.types文件里已有定义,直接改default_type即可。
- 浏览器显示文件文本忽略了其中换行,显示成了一大行,在文件前面加一个<pre>标签即可 参考https://blog.csdn.net/Metal1/article/details/51137499
- 访问配置的localtion的url一直404, location如果一个特定的url 要使用别名,不能用root,alias指定的目录是准确的,root是指定目录的上级目录,因此把root改为alias(截图中圈出来部分) 参考https://www.cnblogs.com/shenyixin/p/12712040.html
还看到一篇感觉不错的介绍nginx的文章,偏理论,感觉不耽误应用,等有时间看看http://tengine.taobao.org/book/chapter_02.html
接着用,再遇到什么问题,接着记
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。