2
我想從重定向請求:移除的haproxy斜線
http://myrepo/mytest.git/
到
http://myrepo/mytest.git
所以,在除去的haproxy的斜線。任何提示?
這是我無論是在前端和後端的嘗試:
我想從重定向請求:移除的haproxy斜線
http://myrepo/mytest.git/
到
http://myrepo/mytest.git
所以,在除去的haproxy的斜線。任何提示?
這是我無論是在前端和後端的嘗試:
你可以嘗試這樣的。
frontend nginx
bind *:5000
mode http
option forwardfor
option httpclose
acl old_url path_beg -i /mytest.git
reqrep ^(.*)[\ /]$ \1
redirect prefix/code 301 if old_url
default_backend tomcats
backend tomcats
mode http
server tomcat01 X.X.X.X:8080 check inter 2000