-
linux
下载安装包
wget http://nginx.org/download/nginx-1.9.0.tar.gz
解压
tar -zxvf nginx-1.9.0.tar.gz
需要安装几个前置东西
yum -y install pcre pcre-devel
yum -y install zlib zlib-devel
yum install -y openssl openssl-devel
进入nginx目录
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
编译安装
make && make install
安装完成
启动,运行sbin目录下的nginx
./nginx
访问地址直接输ip地址即可,发现报403错误,那么修改nginx下的conf里的nginx.conf
重启,再次访问
-
docker
- 安装docker、并且下载nginx镜像,docker使用教程见https://blog.csdn.net/zgsxhdzxl/article/category/8746390
- 启动nginx容器
docker run -d -p 8081:80 --name nginx nginx
- 在本地新建挂载目录
新建 conf、logs、html、conf.d文件夹
- 将nginx.conf拷贝到本地。 将conf.d里的文件也拷贝到本地
# /opt/software/docker/nginx/conf 是我lunux本地路径,根据自己情况更改
# af 是我的容器id,根据自己的变化
docker cp af:/etc/nginx/nginx.conf /opt/software/docker/nginx/conf
docker cp af:/etc/nginx/conf.d /opt/software/docker/nginx/conf.d
- 删掉nginx容器,并重新启动新的容器
#删除旧容器
docker rm -f nginx
#启动新的容器,并指定挂载目录
docker run -d -p 80:80 --name nginx -v /opt/software/docker/nginx/html:/usr/share/nginx/html -v /opt/software/docker/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /opt/software/docker/nginx/logs:/var/log/nginx -v /opt/software/docker/nginx/conf.d/:/etc/nginx/conf.d/ nginx
- 在html下新建index.html
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to mynginx!</h1>
</body>
</html>
- 访问页面,直接输入IP地址