Configuring Spring Cloud Config Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server.port=8888 | |
#Boot from GitHub Repo | |
#spring.cloud.config.server.git.uri=your github repo for config data | |
#spring.cloud.config.server.git.ignore-local-ssh-settings=true | |
#spring.cloud.config.server.git.strict-host-key-checking=false | |
#spring.cloud.config.server.git.passphrase=your passphrase while creating your keys | |
#spring.cloud.config.server.git.private-key= -----BEGIN RSA PRIVATE KEY-----\n\ | |
# your key\n\ | |
# your key\n\ | |
# your key\n\ | |
# your key\n\ | |
# -----END RSA PRIVATE KEY----- | |
# Boot From File System | |
spring.profiles.active=native | |
spring.cloud.config.server.native.searchLocations=/Volumes/MyGitHub/auxiliary/spring-cloud-config-data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment