Commit a8b218f14437f3199aef1ee3db2288c3ba76a79f

Authored by lixzh
1 parent 02648bb9

端口配置

class-service.yml
... ... @@ -72,6 +72,8 @@ apiConfig:
72 72 resourceGaoXiaoBangUrl: https://resource.gaoxiaobang.com
73 73 usrLocalTomcatTempLocation: /usr/local/tomcat/temp
74 74 ---
  75 +server:
  76 + port: 16200
75 77  
76 78 spring:
77 79 profiles: test
... ... @@ -144,6 +146,8 @@ apiConfig:
144 146 resourceGaoXiaoBangUrl: https://resource.gaoxiaobang.com
145 147 usrLocalTomcatTempLocation: /usr/local/tomcat/temp
146 148 ---
  149 +server:
  150 + port: 16200
147 151  
148 152 spring:
149 153 profiles: production
... ...
config.yml
... ... @@ -31,6 +31,8 @@ eureka:
31 31 defaultZone: http://discovery:15200/eureka/
32 32  
33 33 ---
  34 +server:
  35 + port: 15100
34 36  
35 37 spring:
36 38 profiles: test
... ... @@ -62,6 +64,8 @@ eureka:
62 64 defaultZone: http://discovery:15200/eureka/
63 65  
64 66 ---
  67 +server:
  68 + port: 15100
65 69  
66 70 spring:
67 71 profiles: production
... ...
discovery.yml
... ... @@ -26,6 +26,8 @@ eureka:
26 26 defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
27 27  
28 28 ---
  29 +server:
  30 + port: 15200
29 31  
30 32 spring:
31 33 profiles: test
... ... @@ -52,7 +54,9 @@ eureka:
52 54 defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
53 55  
54 56 ---
55   -
  57 +server:
  58 + port: 15200
  59 +
56 60 spring:
57 61 profiles: production
58 62 cloud:
... ...
gateway.yml
... ... @@ -65,6 +65,8 @@ tenant:
65 65 tenantId: 438
66 66  
67 67 ---
  68 +server:
  69 + port: 15300
68 70  
69 71 spring:
70 72 profiles: test
... ... @@ -118,6 +120,8 @@ tenant:
118 120 tenantId: 438
119 121  
120 122 ---
  123 +server:
  124 + port: 15300
121 125  
122 126 spring:
123 127 profiles: production
... ...
user-service.yml
... ... @@ -49,6 +49,8 @@ eureka:
49 49 defaultZone: http://discovery:15200/eureka/
50 50  
51 51 ---
  52 +server:
  53 + port: 16100
52 54  
53 55 spring:
54 56 profiles: test
... ... @@ -98,6 +100,8 @@ eureka:
98 100 defaultZone: http://discovery:15200/eureka/
99 101  
100 102 ---
  103 +server:
  104 + port: 16100
101 105  
102 106 spring:
103 107 profiles: production
... ...