ArchLinux部署Nginx
Nginx是非常常用的Web服务软件,前端生产环境,系统负载均衡,反向代理这些互联网专业名词都离不开Nginx背景。
安装Nginx
包管理器下载安装 nginx
,启动 nginx
1 | sudo pacman -S nginx # ArchLinux |
编辑 nginx 配置文件sudo vim /etc/nginx/nginx.conf
1 | # /etc/nginx/nginx.conf |
保存并应用配置
1 | sudo nginx -t # 测试 nginx 配置文件语法 |
Docker部署
拉取 nginx 镜像
1 | docker pull nginx |
启动 nginx 镜像
- 容器命名为 celiae-nginx
- 只读挂载本地路径
/some/content
到Docker容器路径/usr/share/nginx/html
- 只读挂载本地路径
/host/path/nginx.conf
到Docker容器路径/etc/nginx/nginx.conf
- 映射本机8080端口到Docker容器80端口.
- 静默启动
1 | docker run --name celiae-nginx -v /some/content:/usr/share/nginx/html:ro -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d -p 8080:80 nginx |
/usr/share/nginx/html
前端页面部署的路径 (index.html)/etc/nginx/nginx.conf
是 nginx 全局配置文件
docker-compose.yml
使用nginx镜像;挂载/templates
到Docker容器/etc/nginx/templates
;映射本地:容器;通过环境变量设置地址和端口.
1 | web: |
ArchLinux部署Nginx