nginx 的一些简单重定向及代理设置

1、nginx重定向到其它网址

location / { # 重定向
   return 301 https://www.xxx.com/;
}

location ~ ^/ { # 重定向
   return 301 https://www.xxx.com$request_uri;
}

2、nginx代理其它网址(upstream 的详细配置,自己查阅一下资料。)

server
{
    listen 80;
    server_name www.***.com;
    index index.php index.html index.htm default.php default.htm default.html;
	location /aaa-file/ { # 代理配置
	    proxy_pass https://www.xxx.com/;
	    # 在请求http://www.***.com/aaa-file/uploads 会代理到 https://www.xxx.com/uploads
	}
}

3、简单的完整重定向配置

upstream project { #配置别名
    server 127.0.0.1:44411; #**后台
}
upstream emba_api { #配置别名
    server 127.0.0.1:40011; #接口;可配置域名之类的
}

server
{
    listen 80;
    server_name www.***.com;
    index index.php index.html index.htm default.php default.htm default.html;
    # root /data/www/;
    client_max_body_size 200M;
    #error_page 403 /403.html;
    #报名端

    location / { # 重定向
        return 301 https://www.xxx.com/;
    }
    location /api/ { # 代理配置
        proxy_pass http://emba_api/api/;# emba_api为上面 upstream 定义的配置。
        proxy_set_header Host $host:$server_port; # $host、$server_post 为nginx变量
    }
    location ~ ^/enroll(/|\.html)?  {
        proxy_set_header X-Real-Ip $remote_addr;
        proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Nginx-Proxy true;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header HOST $host;
        proxy_pass http://project;
        proxy_redirect off;
    }

}

你可能感兴趣的:(笔记,nginx,https,运维)