-
Type:
Bug
-
Status: Done
-
Resolution: Fixed
-
Affects Version/s: 5.3.1
-
Fix Version/s: 6.8.0
-
Component/s: None
-
Labels:None
-
Severity:High
-
Requirement Status:
Create new Reverse proxy configuration under Admin → Configuration → Reverse Proxy
Remove the fields
– Internal Context Path
– Public Context Path
Choose Nginx configuration and click on view:
if ( $request_uri ~ ^/(.*)$ )
{ proxy_pass http://new:8081//$1; }proxy_pass http://new:8081//;
The proxy_pass can’t contain“//” (not valid url)
Choose Apache configuration and click on view:
ProxyPassReverseCookiePath / /
ProxyRequests off
ProxyPreserveHost on
ProxyPass / http://new:8081//
ProxyPassReverse / http://new:8081//
The ProxyPass and ProxyPassReverse can’t contain“//” (not valid url)