nginx安装-部署-配置
Centos系统
- 查看是否已安装nginx
whereis nginx
打印下面内容说明没有安装
安装nginx
yum install -y nginx
查看nginx版本
nginx -v
启动nginx
nginx 回车即启动nginx
停止nginx
nginx -s stop
重启nginx
nginx -s reload
修改nginx配置
查找nginx所在位置
whereis nginx
进入nginx配置文件存放位置/etc/nginx
编辑nginx.config文件,修改后要重启
Linx系统
需要的一些依赖
下载nginx
http://nginx.org/en/download.html
下载openssl
https://www.openssl.org/source/old/1.0.2/
下载zlib
http://www.zlib.net/
下载pcre
https://netix.dl.sourceforge.net/project/pcre/pcre/8.40/pcre-8.40.tar.gz
apt-get安装nginx
apt-get install nginx
查看版本
nginx -v
启动nginx
service nginx start
停止nginx
service nginx stop
重启nginx
service nginx restart
nginx配置
查看nginx存放位置
whereis nginx
进入/etc/nginx文件夹
查看配置nginx.conf
cat nginx.conf
部署静态html
修改配置文件
部署并配置api代理
配置阿里云的ssl