Docker+Nginx部署网站 nginx
程序员文章站
2022-04-02 23:17:44
...
Docker+Nginx部署网站
一,单站点
1,登录linux
2,安装docker
wget -qO- https://get.docker.com/ | sh
3,拉取Nginx镜像
docker pull nginx
4,在linux里面新建一个目录www用来试验
mkdir www
5,www目录下面新建html目录和logs目录
mkdir html logs
6,准备静态网站程序,例如程序放在目录MyWebSite1里面,再把整个网站程序传入html目录下面,例如html/MyWebSite1
7,编辑nginx.conf,例如:
8,把nginx.conf传入www目录, www目录最终如下
9,创建容器
docker run -p 80:80 --name nginx6 -v $PWD/nginx.conf:/etc/nginx/nginx.conf --privileged=true -v $PWD/html:/etc/nginx/html -v $PWD/logs:/wwwlogs -d nginx
解释:
-p 80:80 端口映射,多端口映射方法:-p 8081:8081 -p 8082:8082
-v $PWD/nginx.conf:/etc/nginx/nginx.conf 把当前目录的nginx.conf文件挂载到容器的/etc/nginx/nginx.conf,相当于替换
-v $PWD/html:/etc/nginx/html 挂载html目录
-v $PWD/logs:/wwwlogs 挂载日志目录
在浏览器输入http://localhost 验证网站是否跑起来了,完成。
二,多站点
1,把MyWebSite1,MyWebSite2放入html
2,编辑nginx.conf如下
3,启动新容器
docker run -p 8021:8021 -p 8022:8022 --name nginx7 -v $PWD/nginx.conf:/etc/nginx/nginx.conf --privileged=true -v $PWD/html:/etc/nginx/html -v $PWD/logs:/wwwlogs -d nginx
在浏览器输入http://localhost:8021,http://localhost:8021 验证网站是否跑起来了
完成
一,单站点
1,登录linux
2,安装docker
wget -qO- https://get.docker.com/ | sh
3,拉取Nginx镜像
docker pull nginx
4,在linux里面新建一个目录www用来试验
mkdir www
5,www目录下面新建html目录和logs目录
mkdir html logs
6,准备静态网站程序,例如程序放在目录MyWebSite1里面,再把整个网站程序传入html目录下面,例如html/MyWebSite1
7,编辑nginx.conf,例如:
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; server { listen 8021; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html/MyWebSite1; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html/MyWebSite1; } } }
8,把nginx.conf传入www目录, www目录最终如下
9,创建容器
docker run -p 80:80 --name nginx6 -v $PWD/nginx.conf:/etc/nginx/nginx.conf --privileged=true -v $PWD/html:/etc/nginx/html -v $PWD/logs:/wwwlogs -d nginx
解释:
-p 80:80 端口映射,多端口映射方法:-p 8081:8081 -p 8082:8082
-v $PWD/nginx.conf:/etc/nginx/nginx.conf 把当前目录的nginx.conf文件挂载到容器的/etc/nginx/nginx.conf,相当于替换
-v $PWD/html:/etc/nginx/html 挂载html目录
-v $PWD/logs:/wwwlogs 挂载日志目录
在浏览器输入http://localhost 验证网站是否跑起来了,完成。
二,多站点
1,把MyWebSite1,MyWebSite2放入html
2,编辑nginx.conf如下
3,启动新容器
docker run -p 8021:8021 -p 8022:8022 --name nginx7 -v $PWD/nginx.conf:/etc/nginx/nginx.conf --privileged=true -v $PWD/html:/etc/nginx/html -v $PWD/logs:/wwwlogs -d nginx
在浏览器输入http://localhost:8021,http://localhost:8021 验证网站是否跑起来了
完成
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; server { listen 8021; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html/MyWebSite1; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html/MyWebSite1; } } server { listen 8022; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html/MyWebSite2; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html/MyWebSite2; } } }
上一篇: ext_panel4border EXTIEHTML
下一篇: win32之GDI4
推荐阅读
-
.net core3.0部署Linux服务器 使用Docker容器和Nginx反代理教程
-
Nginx下配置网站ssl实现https访问
-
Python3+django2.0+apache2+ubuntu14部署网站上线的方法
-
利用Nginx反向代理功能解决WEB网站80端口被封的解决方法
-
魅族多机房部署支撑网站运维的方案
-
Linux服务器部署.Net Core笔记:五、安装Nginx
-
解决vue项目nginx部署到非根目录下刷新空白的问题
-
apache实现部署多个网站(一个ip部署多域名)的方法详解
-
大数据之nginx+js点击流日志采集服务部署教程
-
关于基于nginx+php组建的网站上传图片漏洞的修补方法