共计 1879 个字符,预计需要花费 5 分钟才能阅读完成。
需求描述
现需要给一台 Web 服务器在 Nginx 服务器上添加反向代理配置,web 服务器需求反代的 url 为 aabbced.com/erc, 需要在浏览器端通过 /erc 来访问实际的 /cfscf 目录
解决方案
写 nginx 反代配置文件:
server {
listen 80;
listen 443 ssl;
server_name $Domain;
#Domain 是指域名,例如需求中的 aabbced.com
ssl_certificate xxx;
ssl_certificate_key xxxxxxxxxxxxxx;
#ssl 证书文件
ssl_session_timeout 10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx;
#ssl 证书密码
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://$Domain;
#一般为主站点所以 Domain 一般也是 aabbced.com,二般情况二般讨论
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log $log_file.log main;
}
location ^~ /$URL_DIR/ {
proxy_pass http://$Domain.$URL_DIR/$REAL_DIR;
#URL_DIR 就是 url 中的目录,REAL_DIR 就是 Web 服务器真实目录
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log $log_file1.log main;
}
}
upstream $Domain {
server $HOSTNAME:$PORT;
}
upstream $Domain.$REAL_DIR{
server $HOSTNAME:$PORT1;
————————————– 分割线 ————————————–
CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm
使用 Nginx 搭建 WEB 服务器 http://www.linuxidc.com/Linux/2013-09/89768.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
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-04/142577.htm