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
a89cbe5d
Commit
a89cbe5d
authored
Mar 22, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update config to support multiple processes
parent
2784b0a2
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 @
a89cbe5d
...
...
@@ -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 @
a89cbe5d
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 @
a89cbe5d
...
...
@@ -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 @
a89cbe5d
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 @
a89cbe5d
...
...
@@ -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 @
a89cbe5d
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