mirror of https://gitee.com/topiam/eiam
52 lines
1.9 KiB
Properties
52 lines
1.9 KiB
Properties
#
|
|
# TOPIAM Employee - Employee Identity and Access Management
|
|
# Copyright © 2022-Present Jinan Yuanchuang Network Technology Co., Ltd. (support@topiam.cn)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
#datasource
|
|
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/topiam?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true
|
|
spring.datasource.username=root
|
|
spring.datasource.password=root
|
|
|
|
#redis
|
|
spring.data.redis.host=127.0.0.1
|
|
spring.data.redis.port=6379
|
|
spring.data.redis.password=topiam123
|
|
|
|
#elasticsearch
|
|
spring.elasticsearch.uris=http://127.0.0.0:9200
|
|
|
|
#springdoc
|
|
springdoc.swagger-ui.enabled=true
|
|
|
|
#rabbitmq
|
|
spring.rabbitmq.host=127.0.0.1
|
|
spring.rabbitmq.port=5672
|
|
spring.rabbitmq.username=rabbit
|
|
spring.rabbitmq.password=123456
|
|
spring.rabbitmq.publisher-confirm-type=correlated
|
|
spring.rabbitmq.publisher-returns=true
|
|
spring.rabbitmq.virtual-host=/
|
|
spring.rabbitmq.dynamic=true
|
|
spring.rabbitmq.listener.simple.acknowledge-mode=manual
|
|
|
|
|
|
# server config
|
|
topiam.server.console-public-base-url=http://127.0.0.1:1898
|
|
topiam.server.portal-public-base-url=http://127.0.0.1:1989
|
|
topiam.server.openapi-public-base-url=http://127.0.0.1:1988
|
|
topiam.server.synchronizer-public-base-url: http://127.0.0.1:1986
|