实现方式nginx基于域名的虚拟主机
目的:
web1 : 本地web服务 所有网页文件为本地目录
实施后:web1.ht.com > web1
web2:docker部署服务 访问路径为容器内部文件占用机器3000端口
实施后:web2.ht.com > web2
共用机器的80端口,不用输入端口即可访问对应服务,提升用户体验
实验环境,修改本地hosts文件 生产则需要绑定域名解析
yum -y install nginx
配置片段
vim /etc/nginx/nginx.conf ... server { listen 80; server_name web2.ht.com; ##docker启动 web2 修改成访问的域名 client_max_body_size 1024M; location / { proxy_pass http://0.0.0.0:3000/; ##修改成docker占用的端口 proxy_set_header Host $host:$server_port; } } server { listen 80; server_name web1.ht.com; ##本地web服务 修改访问域名 root /usr/share/zabbix; ##家目录 index index.php index.html; ##主页 # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { ##自行修改匹配规则 } } error_page 404 /404.html; location = /404.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } ...