Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.89 KB | None | 0 0
  1. eureka:
  2.     instance:
  3.         prefer-ip-address: true
  4.     client:
  5.         enabled: true
  6.         healthcheck:
  7.             enabled: true
  8.         registerWithEureka: true
  9.         fetchRegistry: true
  10.         serviceUrl:
  11.             defaultZone: http://admin:admin@localhost:8761/eureka/
  12.  
  13. server:
  14.     port: 8081
  15.     address: 127.0.0.1
  16.  
  17. spring:
  18.     application:
  19.         name: mc.gateway
  20.  
  21.     profiles:
  22.         active: dev
  23.  
  24.     datasource:
  25.         dataSourceClassName: com.mysql.jdbc.jdbc2.optional.MysqlDataSource
  26.         url: jdbc:mysql://127.0.0.1:3306/micro-communicator
  27.         username: root
  28.         password: mateusz3
  29.  
  30.     jpa:
  31.         database-platform: org.hibernate.dialect.H2Dialect
  32.         database: H2
  33.         openInView: false
  34.         show_sql: false
  35.         generate-ddl: false
  36.         hibernate:
  37.             ddl-auto: none
  38.             naming-strategy: org.hibernate.cfg.EJB3NamingStrategy
  39.         properties:
  40.             hibernate.cache.use_second_level_cache: true
  41.             hibernate.cache.use_query_cache: false
  42.             hibernate.generate_statistics: true
  43.             hibernate.cache.region.factory_class: org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory
  44.  
  45.     mail:
  46.         baseUrl: http://127.0.0.1:8081
  47.  
  48.     thymeleaf:
  49.         mode: XHTML
  50.         cache: false
  51.  
  52.  
  53. metrics:
  54.     jmx.enabled: true
  55.     spark:
  56.         enabled: false
  57.         host: localhost
  58.         port: 9999
  59.     graphite:
  60.         enabled: false
  61.         host: localhost
  62.         port: 2003
  63.         prefix: demo
  64.  
  65. cache:
  66.     timeToLiveSeconds: 3600
  67.     ehcache:
  68.         maxBytesLocalHeap: 16M
  69.  
  70. app:
  71.     service:
  72.         home: http://localhost:8081/
  73.         security: http://localhost:8081/j_spring_cas_security_check
  74.  
  75. cas:
  76.     url:
  77.         prefix: https://localhost:8443/cas/
  78.         login: https://localhost:8443/cas/login
  79.         logout: https://localhost:8443/cas/logout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement