共计 1465 个字符,预计需要花费 4 分钟才能阅读完成。
通过一台 Nginx 服务器代理多个域名进行跳转,原理很简单,重点在玩法!适用于公司处理域名紧急备案问题。
域名:
www.linuxidc.com
www.linuxidc.net
nginx 服务器:
ginx.conf
实现:
www.linuxidc.com 域名连接到 nginx 服务器自动代理到 http://192.168.95.180:8080
www.linuxidc.net 域名连接到 nginx 服务器自动代理到 http://192.168.95.181:8181
server1:
server {
listen 80;
server_name www.linuxidc.com;
location / {
proxy_set_header Host linuxidc.com;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://192.168.95.180:8080;
}
}
server2:
server {
listen 80;
server_name www.linuxidc.net;
location / {
proxy_set_header Host linuxidc.net;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://192.168.95.181:8181;
}
}
更多 Nginx 相关教程见以下内容:
CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm
Ubuntu 16.04 下安装部署 Nginx+uWSGI+Django1.9.7 http://www.linuxidc.com/Linux/2016-07/133484.htm
搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm
CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm
CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm
CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm
Nginx 安装配置使用详细笔记 http://www.linuxidc.com/Linux/2014-07/104499.htm
Ubuntu 16.04 源码编译安装 Nginx 1.10.0 http://www.linuxidc.com/Linux/2016-08/134080.htm
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-08/134421.htm