# =================================================================== # Spring Boot configuration for the "dev" profile. # # This configuration overrides the application.yml file. # # More information on profiles: http://www.jhipster.tech/profiles/ # More information on configuration properties: http://www.jhipster.tech/common-application-properties/ # =================================================================== # =================================================================== # Standard Spring Boot properties. # Full reference is available at: # http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html # =================================================================== logging: level: ROOT: DEBUG com.edazone.msjhipster.msauth: DEBUG io.github.jhipster: DEBUG eureka: instance: prefer-ip-address: true client: service-url: defaultZone: http://admin:${jhipster.registry.password}@localhost:8761/eureka/ spring: profiles: active: dev include: swagger devtools: restart: enabled: true livereload: enabled: false # we use gulp + BrowserSync for livereload jackson: serialization.indent_output: true datasource: type: com.zaxxer.hikari.HikariDataSource url: jdbc:mysql://localhost:3306/msauth?useUnicode=true&characterEncoding=utf8&useSSL=false username: root password: hikari: data-source-properties: cachePrepStmts: true prepStmtCacheSize: 250 prepStmtCacheSqlLimit: 2048 useServerPrepStmts: true jpa: database-platform: org.hibernate.dialect.MySQL5InnoDBDialect database: MYSQL show-sql: true properties: hibernate.id.new_generator_mappings: true hibernate.cache.use_second_level_cache: true hibernate.cache.use_query_cache: false hibernate.generate_statistics: true hibernate.cache.region.factory_class: io.github.jhipster.config.jcache.NoDefaultJCacheRegionFactory mail: host: localhost port: 25 username: password: messages: cache-seconds: 1 thymeleaf: cache: false zipkin: # Use the "zipkin" Maven profile to have the Spring Cloud Zipkin dependencies base-url: http://localhost:9411 enabled: false locator: discovery: enabled: true liquibase: contexts: dev # =================================================================== # To enable SSL, generate a certificate using: # keytool -genkey -alias msauth -storetype PKCS12 -keyalg RSA -keysize 2048 -keystore keystore.p12 -validity 3650 # # You can also use Let's Encrypt: # https://maximilian-boehm.com/hp2121/Create-a-Java-Keystore-JKS-from-Let-s-Encrypt-Certificates.htm # # Then, modify the server.ssl properties so your "server" configuration looks like: # # server: # port: 8443 # ssl: # key-store: keystore.p12 # key-store-password: # key-store-type: PKCS12 # key-alias: msauth # =================================================================== server: port: 9999 # =================================================================== # JHipster specific properties # # Full reference is available at: http://www.jhipster.tech/common-application-properties/ # =================================================================== jhipster: http: version: V_1_1 # To use HTTP/2 you will need SSL support (see above the "server.ssl" configuration) cache: # Cache configuration ehcache: # Ehcache configuration time-to-live-seconds: 3600 # By default objects stay 1 hour in the cache max-entries: 100 # Number of objects in each cache entry # CORS is only enabled by default with the "dev" profile, so BrowserSync can access the API cors: allowed-origins: "*" allowed-methods: "*" allowed-headers: "*" exposed-headers: "Authorization,Link,X-Total-Count" allow-credentials: true max-age: 1800 security: client-authorization: client-id: internal client-secret: internal mail: # specific JHipster mail property, for standard properties see MailProperties from: msauth@localhost base-url: http://127.0.0.1:9999 metrics: # DropWizard Metrics configuration, used by MetricsConfiguration jmx.enabled: true graphite: # Use the "graphite" Maven profile to have the Graphite dependencies enabled: false host: localhost port: 2003 prefix: msauth prometheus: # Use the "prometheus" Maven profile to have the Prometheus dependencies enabled: false endpoint: /prometheusMetrics logs: # Reports Dropwizard metrics in the logs enabled: false report-frequency: 60 # in seconds logging: logstash: # Forward logs to logstash over a socket, used by LoggingConfiguration enabled: false host: localhost port: 5000 queue-size: 512 uaa: key-store: name: keystore.jks password: password alias: selfsigned web-client-configuration: # Access Token is valid for 5 mins access-token-validity-in-seconds: 300 # Refresh Token is valid for 7 days refresh-token-validity-in-seconds-for-remember-me: 604800 client-id: web_app secret: changeit # =================================================================== # Application specific properties # Add your own application properties here, see the ApplicationProperties class # to have type-safe configuration, like in the JHipsterProperties above # # More documentation is available at: # http://www.jhipster.tech/common-application-properties/ # =================================================================== application: