首先配置 两个域名解析到同一台服务器,然后安装 nginx ,
在nginx 配置文件中设置两个 server块 ,server_name 分别设置为两个域名,然后设置各自对应的 访问ip加端口号即可,示例如下
#server1
server {
listen 80;
server_name holer.ateng.vip;
location / {
proxy_pass http://127.0.0.1:600/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
#server2
server {
listen 80;
server_name holer.ateng.vip;
location / {
proxy_pass http://127.0.0.1:600/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
网友评论