Xia Kaixiang | b5d872c | 2019-07-24 14:48:50 +0800 | [diff] [blame] | 1 | spring.main.banner-mode=off |
| 2 | # create and drop tables and sequences, loads import.sql |
| 3 | spring.jpa.hibernate.ddl-auto=update |
| 4 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect |
| 5 | spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false |
| 6 | spring.datasource.continue-on-error=true |
| 7 | spring.datasource.initialization-mode=always |
| 8 | # Postgresql settings |
| 9 | spring.datasource.platform=postgresql |
| 10 | spring.datasource.url=jdbc:postgresql://localhost:15432/payapi |
| 11 | spring.datasource.username=admin |
| 12 | spring.datasource.password=123456 |
| 13 | database.dbtype=postgresql |
| 14 | # Redis settings |
| 15 | spring.redis.host=localhost |
| 16 | spring.redis.port=16379 |
| 17 | spring.redis.password=kingstar |
| 18 | # jwt settings |
| 19 | jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw= |
| 20 | # timeout seconds |
| 21 | jwt.expiration=3600 |
| 22 | # user password |
| 23 | auth.password.bcrypt.seed= |
| 24 | security.request.sign=false |
| 25 | ################################################## |
| 26 | ## quartz task scheduler |
| 27 | shopbalance.updater.cron=- |
Xia Kaixiang | 45bd553 | 2019-08-05 08:42:52 +0800 | [diff] [blame^] | 28 | download.ynrcc.chkfile.cron =3 0/2 * * * ? |
Xia Kaixiang | b5d872c | 2019-07-24 14:48:50 +0800 | [diff] [blame] | 29 | ############################################# |
| 30 | spring.cloud.consul.enabled=false |
| 31 | spring.cloud.consul.host=172.28.201.70 |
| 32 | spring.cloud.consul.port=8500 |
Xia Kaixiang | 45bd553 | 2019-08-05 08:42:52 +0800 | [diff] [blame^] | 33 | ################# proxy ############################ |
| 34 | resttemplate.proxy.type=direct |
| 35 | resttemplate.proxy.host=127.0.0.1 |
| 36 | resttemplate.proxy.port=8087 |