make stripMapping default to true to not change the current functionality
This commit is contained in:
@@ -10,5 +10,5 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
@ConfigurationProperties("zuul.proxy")
|
||||
public class ZuulProxyProperties {
|
||||
private String mapping = "/proxy";
|
||||
private boolean stripMapping = false;
|
||||
private boolean stripMapping = true; // this is currently the default behaviour
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ eureka:
|
||||
zuul:
|
||||
proxy:
|
||||
mapping: /api
|
||||
stripMapping: false
|
||||
route:
|
||||
testclient: /api/testing123
|
||||
stores: /api/stores
|
||||
|
||||
Reference in New Issue
Block a user