Docker部署Nginx-虚拟主机

本文最后更新于 2024年12月2日 晚上

准备存储卷

1
mkdir data conf

准备Nginx配置文件

创建Nginx配置文件: /usr/local/nginx/conf/nginx.conf, 内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
worker_processes  1;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
# 配置虚拟主机 192.168.75.145
server {
# 监听的ip和端口,配置 192.168.75.145:80
listen 80;
# 虚拟主机名称这里配置ip地址
server_name 192.168.75.145;
# 所有的请求都以 / 开始,所有的请求都可以匹配此 location
location / {
# 使用 root 指令指定虚拟主机目录即网页存放目录
# 比如访问 http://ip/index.html 将找到 /usr/local/docker/nginx/wwwroot/html80/index.html
# 比如访问 http://ip/item/index.html 将找到 /usr/local/docker/nginx/wwwroot/html80/item/index.html

root /usr/share/nginx/wwwroot/html80;
# 指定欢迎页面,按从左到右顺序查找
index index.html index.htm;
}
}
# 配置虚拟主机 192.168.75.245
server {
listen 81;
server_name 192.168.75.145;
location / {
root /usr/share/nginx/wwwroot/html81;
index index.html index.htm;
}
}
server {
listen 82;
server_name admin.web.itoken.funtl.com;
location / {
root /usr/share/nginx/wwwroot/html82;
index index.html index.htm;
}
}
}

创建docker-compose.yml

创建文件: /usr/local/nginx/docker-compose.yml, 内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
version: '3.1'
services:
nginx:
restart: always
image: nginx
container_name: nginx
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf
- ./data:/usr/share/nginx/wwwroot
ports:
- 81:81
- 82:82

Docker部署Nginx-虚拟主机
https://www.bugfree.top/2021/11/30/docker/Docker部署Nginx-虚拟主机/
作者
lizhenguo
发布于
2021年11月30日
更新于
2024年12月2日
许可协议