Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

* Indicates that the server should read it’s own application.properties from the remote config server (GIT or filesystem)

 

Code Block
titlebootstrap.properties - extended for using the file-system
spring:
  profiles:
    active: native
  cloud:
    config:
      server:
        native:
          searchLocations: file:D:/local-properties

...


Code Block
titlebootstrap.properties - extended for using GIT - basic authentication
spring:
  cloud:
    config:
      server:
        git:
          uri: https://git.blueriq.com/config-repo.git
          basedir: target/config
          username: <git_username>
          password: <git_password>

 

...

 

Anchor
scsauth
scsauth

Code Block
titleapplication.properties
server:
  port: 8888
security:
  user:
    name: <username> (*)
    password: <password> (*)
management:
  context-path: /admin

...