611 B
611 B
NGINX配置宿主机挂载目录
- 克隆项目
git clone https://gitea.xiaokeaii.top/yinxiaolong/nginx_proxy.git
- 进入目录
cd nginx_proxy
- 使用docker创建nginx容器
docker run -p 8080:80 --name nginx_proxy \ # 启动的容器名称
-v `pwd`/conf.d:/etc/nginx/conf.d \ # 映射站点配置文件
-v `pwd`/html:/usr/share/nginx/html \ # 映射站点根目录
-v `pwd`/logs:/var/log/nginx/ # 映射日志目录
nginx
- 访问站点
http://localhost:8088