Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
cff6c15f
Commit
cff6c15f
authored
Mar 23, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #25 from yiming187/conf_update
Update config to support multiple processes
parents
2784b0a2
a89cbe5d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
7 deletions
+15
-7
.gitignore
.gitignore
+6
-0
application.properties
apollo-biz/src/main/resources/application.properties
+1
-1
application.yml
apollo-configadmin/src/main/resources/application.yml
+1
-1
bootstrap.yml
apollo-configadmin/src/main/resources/bootstrap.yml
+3
-2
application.yml
apollo-configserver/src/main/resources/application.yml
+1
-1
bootstrap.yml
apollo-configserver/src/main/resources/bootstrap.yml
+3
-2
No files found.
.gitignore
View file @
cff6c15f
...
...
@@ -23,3 +23,8 @@ target
# git
*.orig
dev
fat
uat
prd
\ No newline at end of file
apollo-biz/src/main/resources/application.properties
View file @
cff6c15f
spring.datasource.url
=
jdbc:h2:
file
:~/fxapolloconfigdb;mode=mysql
spring.datasource.url
=
jdbc:h2:
mem
:~/fxapolloconfigdb;mode=mysql
spring.datasource.username
=
sa
spring.datasource.password
=
spring.jpa.hibernate.naming_strategy
=
org.hibernate.cfg.EJB3NamingStrategy
...
...
apollo-configadmin/src/main/resources/application.yml
View file @
cff6c15f
...
...
@@ -3,7 +3,7 @@ spring:
name
:
apollo-configadmin
server
:
port
:
9080
port
:
${port:8080}
logging
:
level
:
...
...
apollo-configadmin/src/main/resources/bootstrap.yml
View file @
cff6c15f
eureka
:
instance
:
hostname
:
localhost
hostname
:
${hostname:localhost}
client
:
serviceUrl
:
defaultZone
:
http://${eureka.instance.hostname}
:${server.port}
/eureka/
defaultZone
:
http://${eureka.instance.hostname}/eureka/
healthcheck
:
enabled
:
true
\ No newline at end of file
apollo-configserver/src/main/resources/application.yml
View file @
cff6c15f
...
...
@@ -3,7 +3,7 @@ spring:
name
:
apollo-configserver
server
:
port
:
80
port
:
${port:80}
logging
:
level
:
...
...
apollo-configserver/src/main/resources/bootstrap.yml
View file @
cff6c15f
eureka
:
instance
:
hostname
:
localhost
hostname
:
${hostname:localhost}
client
:
serviceUrl
:
defaultZone
:
http://${eureka.instance.hostname}
:${server.port}
/eureka/
defaultZone
:
http://${eureka.instance.hostname}/eureka/
healthcheck
:
enabled
:
true
\ No newline at end of file
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