0%

nginx-重定向配置

nginx-重定向配置

nginx代理配置理论很简单,但是实际使用过程中有时候还是会有些不好配置的,不是直接的重定向 记录一下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#http://*******/ydsq/openRed/ps/api/user/login
#重定向到
#http:127.0.0.1:8080/ps/api/user/login

配置proxy_pass
location /ydsq/openRed/ps {
proxy_pass http://127.0.0.1:8080/ps/
}
注意proxy_pass 地址要以/结尾

#https://******/openRed/img/2021-09-11/640.png
#指向文件夹 /app/weblogic/upload/images/2021-09-11/640.png

location /openRed/img/ {
alias /app/weblogic/upload/images/;
}
#使用alias关键字结尾必须用/