1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- server:
- servlet:
- contextPath: /nacos
- tomcat:
- accesslog:
- enabled: true
- pattern: '%h %l %u %t "%r" %s %b %D %{User-Agent}i %{Request-Source}i'
- basedir: ''
- spring:
- datasource:
- platform: mysql
- db:
- num: 1
- url:
- # '0': jdbc:mysql://192.168.1.190:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
- # 研发环境
- # '0': jdbc:mysql://123.57.213.14:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
- # 本地环境
- '0': jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
- user:
- '0': root
- password:
- '0': root
- management:
- metrics:
- export:
- elastic:
- enabled: false
- # influx:
- # enabled: false
- health:
- rabbit:
- enabled: false
- nacos:
- core:
- auth:
- #是否开启鉴权(JeecgNacosApplication.enabled属性优先级更高)
- enabled: false
- caching:
- enabled: true
- server:
- identity:
- key: example
- value: example
- plugin:
- nacos:
- token:
- expire:
- seconds: 18000
- secret:
- key: SecretKey01234567890123456789012345345678999987654901234567890123456789
- system:
- type: nacos
- istio:
- mcp:
- server:
- enabled: false
- naming:
- empty-service:
- auto-clean: true
- clean:
- initial-delay-ms: 50000
- period-time-ms: 30000
- security:
- ignore:
- urls: /,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-ui/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**
- standalone: true
|