新增示例auth、user、gateway、client
diff --git a/samples/gateway/src/main/resources/application.yml b/samples/gateway/src/main/resources/application.yml
new file mode 100755
index 0000000..f472001
--- /dev/null
+++ b/samples/gateway/src/main/resources/application.yml
@@ -0,0 +1,27 @@
+server:
+ port: 5555
+
+## logging
+logging:
+ level:
+ root: INFO
+ org.springframework.web: INFO
+ org.springframework.cloud.gateway: INFO
+ com.supwisdom.infras.security: DEBUG
+ com.supwisdom.leaveschool: DEBUG
+
+spring:
+ application:
+ name: sample-gateway
+ cloud:
+ gateway:
+ routes:
+ - id: sample-user
+ uri: http://localhost:10010
+ order: 10010
+ predicates:
+ - Path=/api/sample-user/**
+ filters:
+ - RewritePath=/(?<prefix>.*)/sample-user/(?<suffix>.*), /$\{prefix}/$\{suffix}
+
+management.endpoints.web.exposure.include: '*'