Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
b59fc9fc
Commit
b59fc9fc
authored
Apr 01, 2020
by
弓厶
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整发布到正式环境下的服务器配置
parent
ce26d762
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
22 additions
and
38 deletions
+22
-38
apply-net/src/main/resources/application-prod.yml
+3
-3
core-service/src/main/resources/application-prod.yml
+3
-3
deploy/prod/docker-gdtel-gztel-hhr/core/Dockerfile
+1
-1
deploy/prod/docker-gdtel-gztel-hhr/docker-compose.yml
+0
-16
new-user/src/main/resources/application-prod.yml
+3
-3
old-user/src/main/resources/application-prod.yml
+3
-3
renewal-user/src/main/resources/application-prod.yml
+3
-3
service-manager/src/main/resources/application-prod.yml
+3
-3
task/src/main/resources/application-prod.yml
+3
-3
No files found.
apply-net/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -95,7 +95,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -104,9 +104,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
core-service/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -70,7 +70,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -79,9 +79,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
deploy/prod/docker-gdtel-gztel-hhr/core/Dockerfile
View file @
b59fc9fc
FROM
openjdk:8-jre-alpine
LABEL
maintainer="Liph <liph@gzwinsun.com>" app="gdtelgztelschoolcentercore"
ENV
JAR_NAME=
applynet
\
ENV
JAR_NAME=
core
\
TZ=Asia/Shanghai
COPY
$JAR_NAME.jar $JAR_NAME.jar
EXPOSE
11002
...
...
deploy/prod/docker-gdtel-gztel-hhr/docker-compose.yml
View file @
b59fc9fc
...
...
@@ -5,8 +5,6 @@ services:
container_name
:
eureka
ports
:
-
"
20000:20000"
depends_on
:
-
rabbitmq
deploy
:
resources
:
limits
:
...
...
@@ -19,7 +17,6 @@ services:
ports
:
-
"
10001:10001"
depends_on
:
-
rabbitmq
-
eureka
deploy
:
resources
:
...
...
@@ -33,7 +30,6 @@ services:
ports
:
-
"
10002:10002"
depends_on
:
-
rabbitmq
-
eureka
deploy
:
resources
:
...
...
@@ -49,9 +45,7 @@ services:
volumes
:
-
"
./enclosure:/enclosure"
depends_on
:
-
rabbitmq
-
eureka
-
redis
-
gdtelgztelschoolcentercore
deploy
:
resources
:
...
...
@@ -65,9 +59,7 @@ services:
ports
:
-
"
11191:11191"
depends_on
:
-
rabbitmq
-
eureka
-
redis
-
gdtelgztelschoolcentercore
deploy
:
resources
:
...
...
@@ -81,9 +73,7 @@ services:
ports
:
-
"
11092:11092"
depends_on
:
-
rabbitmq
-
eureka
-
redis
-
gdtelgztelschoolcentercore
deploy
:
resources
:
...
...
@@ -97,9 +87,7 @@ services:
ports
:
-
"
11093:11093"
depends_on
:
-
rabbitmq
-
eureka
-
redis
-
gdtelgztelschoolcentercore
deploy
:
resources
:
...
...
@@ -113,9 +101,7 @@ services:
ports
:
-
"
11094:11094"
depends_on
:
-
rabbitmq
-
eureka
-
redis
-
gdtelgztelschoolcentercore
deploy
:
resources
:
...
...
@@ -129,8 +115,6 @@ services:
ports
:
-
"
11090:11090"
depends_on
:
-
rabbitmq
-
redis
-
eureka
-
gateway
-
gdtelgztelschoolcentercore
...
...
new-user/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -97,7 +97,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -106,9 +106,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
old-user/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -95,7 +95,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -104,9 +104,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
renewal-user/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -95,7 +95,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -104,9 +104,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
service-manager/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -95,7 +95,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -104,9 +104,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
task/src/main/resources/application-prod.yml
View file @
b59fc9fc
...
...
@@ -96,7 +96,7 @@ spring:
# republish failures to the DLQ with diagnostic headers
republish-to-dlq
:
true
rabbitmq
:
host
:
rabbitmq
host
:
172.18.101.171
port
:
5672
username
:
guest
password
:
guest
...
...
@@ -105,9 +105,9 @@ spring:
cluster
:
max-redirects
:
3
nodes
:
-
redis:6379
-
${spring.redis.host}:${spring.redis.port}
database
:
0
host
:
redis
host
:
172.18.101.171
port
:
6379
password
:
lettuce
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment