码迷,mamicode.com
首页 > Web开发 > 详细

基于centos系统 使用docker搭建Web服务器 nginx

时间:2021-04-19 14:38:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:编辑   lazy   安装centos   mamicode   image   highlight   png   -name   code   

前提条件:

已安装centos、docker

 

nginx搭建方式:

1.首先进入centos系统,打开命令行

docker pull nginx:1.17.9   --安装指定版本nginx,这里选择1.17.9据说比较稳定

2.启动nginx

docker run -p 80:80 nginx:1.17.9

3.打开浏览器登录本机ip地址,当出现下方提示说明搭建成功,可以愉快的进行下一步了

注:查看本机ip地址方式,在centos系统下输入ipconfig -a

技术图片

 

 

 

补充:

自定义首页内容:

1.命令行执行

docker run -d --name nginx -p 80:80 -v ${PWD}/nginx/html:/usr/share/nginx/html nginx:1.17.9

2.进入/nginx/html目录,编辑html文件并保存

<h1>this is a web</h1>

  

  

  

基于centos系统 使用docker搭建Web服务器 nginx

标签:编辑   lazy   安装centos   mamicode   image   highlight   png   -name   code   

原文地址:https://www.cnblogs.com/xiangjingwei/p/14666788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!