nginx-重定向配置
nginx代理配置理论很简单,但是实际使用过程中有时候还是会有些不好配置的,不是直接的重定向 记录一下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
配置proxy_pass location /ydsq/openRed/ps { proxy_pass http://127.0.0.1:8080/ps/ } 注意proxy_pass 地址要以/结尾
location /openRed/img/ { alias /app/weblogic/upload/images/; }
|