config
This commit is contained in:
parent
352ad59ff0
commit
0c5553b209
@ -1,114 +0,0 @@
|
|||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you under the Apache License, Version 2.0 (the
|
|
||||||
# "License"); you may not use this file except in compliance
|
|
||||||
# with the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# The agent namespace
|
|
||||||
agent.namespace=dev
|
|
||||||
|
|
||||||
# The service name in UI
|
|
||||||
agent.service_name=dev:disk
|
|
||||||
|
|
||||||
# The number of sampled traces per 3 seconds
|
|
||||||
# Negative or zero means off, by default
|
|
||||||
# agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
|
|
||||||
|
|
||||||
# Authentication active is based on backend setting, see application.yml for more details.
|
|
||||||
# agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
|
|
||||||
|
|
||||||
# The max amount of spans in a single segment.
|
|
||||||
# Through this config item, SkyWalking keep your application memory cost estimated.
|
|
||||||
# agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:150}
|
|
||||||
|
|
||||||
# If the operation name of the first span is included in this set, this segment should be ignored. Multiple values should be separated by `,`.
|
|
||||||
# agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will save all instrumented classes files in `/debugging` folder.
|
|
||||||
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
|
||||||
# agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will cache all instrumented classes files to memory or disk files (decided by class cache mode),
|
|
||||||
# allow other javaagent to enhance those classes that enhanced by SkyWalking agent.
|
|
||||||
# agent.is_cache_enhanced_class = ${SW_AGENT_CACHE_CLASS:false}
|
|
||||||
|
|
||||||
# The instrumented classes cache mode: MEMORY or FILE
|
|
||||||
# MEMORY: cache class bytes to memory, if instrumented classes is too many or too large, it may take up more memory
|
|
||||||
# FILE: cache class bytes in `/class-cache` folder, automatically clean up cached class files when the application exits
|
|
||||||
# agent.class_cache_mode = ${SW_AGENT_CLASS_CACHE_MODE:MEMORY}
|
|
||||||
|
|
||||||
# The operationName max length
|
|
||||||
# Notice, in the current practice, we don't recommend the length over 190.
|
|
||||||
# agent.operation_name_threshold=${SW_AGENT_OPERATION_NAME_THRESHOLD:150}
|
|
||||||
|
|
||||||
# The agent use gRPC plain text in default.
|
|
||||||
# If true, SkyWalking agent uses TLS even no CA file detected.
|
|
||||||
# agent.force_tls=${SW_AGENT_FORCE_TLS:false}
|
|
||||||
|
|
||||||
# If true, skywalking agent will enable profile when user create a new profile task. Otherwise disable profile.
|
|
||||||
# profile.active=${SW_AGENT_PROFILE_ACTIVE:true}
|
|
||||||
|
|
||||||
# Parallel monitor segment count
|
|
||||||
# profile.max_parallel=${SW_AGENT_PROFILE_MAX_PARALLEL:5}
|
|
||||||
|
|
||||||
# Max monitor segment time(minutes), if current segment monitor time out of limit, then stop it.
|
|
||||||
# profile.duration=${SW_AGENT_PROFILE_DURATION:10}
|
|
||||||
|
|
||||||
# Max dump thread stack depth
|
|
||||||
# profile.dump_max_stack_depth=${SW_AGENT_PROFILE_DUMP_MAX_STACK_DEPTH:500}
|
|
||||||
|
|
||||||
# Snapshot transport to backend buffer size
|
|
||||||
# profile.snapshot_transport_buffer_size=${SW_AGENT_PROFILE_SNAPSHOT_TRANSPORT_BUFFER_SIZE:50}
|
|
||||||
|
|
||||||
# Backend service addresses.
|
|
||||||
collector.backend_service=192.168.110.98:11800
|
|
||||||
|
|
||||||
# Logging file_name
|
|
||||||
logging.file_name=${SW_LOGGING_FILE_NAME:skywalking-api.log}
|
|
||||||
|
|
||||||
# Logging level
|
|
||||||
logging.level=${SW_LOGGING_LEVEL:INFO}
|
|
||||||
|
|
||||||
# Logging dir
|
|
||||||
# logging.dir=${SW_LOGGING_DIR:""}
|
|
||||||
|
|
||||||
# Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
|
|
||||||
# logging.max_file_size=${SW_LOGGING_MAX_FILE_SIZE:314572800}
|
|
||||||
|
|
||||||
# The max history log files. When rollover happened, if log files exceed this number,
|
|
||||||
# then the oldest file will be delete. Negative or zero means off, by default.
|
|
||||||
# logging.max_history_files=${SW_LOGGING_MAX_HISTORY_FILES:-1}
|
|
||||||
|
|
||||||
# Listed exceptions would not be treated as an error. Because in some codes, the exception is being used as a way of controlling business flow.
|
|
||||||
# Besides, the annotation named IgnoredException in the trace toolkit is another way to configure ignored exceptions.
|
|
||||||
# statuscheck.ignored_exceptions=${SW_STATUSCHECK_IGNORED_EXCEPTIONS:}
|
|
||||||
|
|
||||||
# The max recursive depth when checking the exception traced by the agent. Typically, we don't recommend setting this more than 10, which could cause a performance issue. Negative value and 0 would be ignored, which means all exceptions would make the span tagged in error status.
|
|
||||||
# statuscheck.max_recursive_depth=${SW_STATUSCHECK_MAX_RECURSIVE_DEPTH:1}
|
|
||||||
|
|
||||||
# Mount the specific folders of the plugins. Plugins in mounted folders would work.
|
|
||||||
plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations}
|
|
||||||
|
|
||||||
# Exclude activated plugins
|
|
||||||
# plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:}
|
|
||||||
|
|
||||||
# If set to true, the parameters of the sql (typically java.sql.PreparedStatement) would be collected.
|
|
||||||
plugin.jdbc.trace_sql_parameters=true
|
|
||||||
|
|
||||||
# Kafka producer configuration
|
|
||||||
plugin.kafka.bootstrap_servers=192.168.110.68:9092
|
|
||||||
# if you want to set namespace. please make sure the OAP server has set it in Kafka fetcher module
|
|
||||||
# plugin.kafka.namespace=${SW_KAFKA_NAMESPACE:""}
|
|
||||||
|
|
||||||
# Match spring bean with regex expression for classname
|
|
||||||
# plugin.springannotation.classname_match_regex=${SW_SPRINGANNOTATION_CLASSNAME_MATCH_REGEX:}
|
|
@ -1,156 +0,0 @@
|
|||||||
server.port=80
|
|
||||||
spring.application.name=disk
|
|
||||||
spring.profiles.active=dev
|
|
||||||
|
|
||||||
instance.id=5
|
|
||||||
spring.main.allow-bean-definition-overriding=true
|
|
||||||
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
|
|
||||||
spring.datasource.url=jdbc:mysql://101.71.142.95:16033/cloud_disk?useUnicode=true&characterEncoding=utf8&useSSL=false&autoReconnect=true&failOverReadOnly=false&allowMultiQueries=true
|
|
||||||
spring.datasource.username=dev
|
|
||||||
spring.datasource.password=ENC(pwyoWlsqk/8IikLX/w4+UUhZnAMoHu5y)
|
|
||||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
||||||
spring.datasource.initialization-mode=always
|
|
||||||
spring.datasource.continue-on-error=true
|
|
||||||
spring.datasource.testOnBorrow=true
|
|
||||||
spring.mvc.async.request-timeout=20000
|
|
||||||
spring.datasource.hikari.read-only=false
|
|
||||||
spring.datasource.hikari.connection-timeout=60000
|
|
||||||
spring.datasource.hikari.idle-timeout=60000
|
|
||||||
spring.datasource.hikari.validation-timeout=30000
|
|
||||||
spring.datasource.hikari.max-lifetime=60000
|
|
||||||
spring.datasource.hikari.login-timeout=5
|
|
||||||
spring.datasource.hikari.maximum-pool-size=200
|
|
||||||
spring.datasource.hikari.minimum-idle=5
|
|
||||||
spring.datasource.hikari.connection-test-query=SELECT 1 FROM DUAL
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-connections=2000
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-threads=1000
|
|
||||||
## Mybatis ??====================================
|
|
||||||
mybatis.mapperLocations=classpath:mapper/*.xml
|
|
||||||
user.default.lady=/static/common/image/head/lady.png
|
|
||||||
user.default.boy=/static/common/image/head/boy.png
|
|
||||||
user.default.girl=/static/common/image/head/girl.png
|
|
||||||
user.default.sir=/static/common/image/head/sir.png
|
|
||||||
user.default.headPic=/static/common/image/head/girl.png
|
|
||||||
loginLimit.level1.count=5
|
|
||||||
loginLimit.level1.interval=300
|
|
||||||
loginLimit.level2.count=10
|
|
||||||
loginLimit.level2.interval=300
|
|
||||||
loginLimit.level2.denyInterval=600
|
|
||||||
|
|
||||||
spring.messages.basename=i18n.messages
|
|
||||||
spring.messages.encoding=utf-8
|
|
||||||
|
|
||||||
|
|
||||||
## Redis \uFFFD\uFFFD\uFFFD\uFFFD
|
|
||||||
#spring.redis.cluster.nodes=192.168.110.148:7001,192.168.110.148:7002,192.168.110.148:7003
|
|
||||||
spring.redis.host=192.168.110.145
|
|
||||||
spring.redis.port=7001
|
|
||||||
## Redis\uFFFD\uFFFD\uFFFD\u077F\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u012C\uFFFD\uFFFD\u03AA0\uFFFD\uFFFD
|
|
||||||
spring.redis.database=0
|
|
||||||
spring.redis.password=ENC(G6xJ3SKM/oA594UG6FCO8QH1t1HoEO/N)
|
|
||||||
spring.redis.jedis.pool.max-active=8
|
|
||||||
spring.redis.jedis.pool.max-wait=-1
|
|
||||||
## \uFFFD\uFFFD\uFFFD\u04F3\uFFFD\uFFFD\u0435\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD
|
|
||||||
spring.redis.jedis.pool.max-idle=8
|
|
||||||
## \uFFFD\uFFFD\uFFFD\u04F3\uFFFD\uFFFD\u0435\uFFFD\uFFFD\uFFFD\u0421\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD
|
|
||||||
spring.redis.jedis.pool.min-idle=0
|
|
||||||
## \uFFFD\uFFFD\uFFFD\u04F3\uFFFD\u02B1\u02B1\uFFFD\u48E8\uFFFD\uFFFD\uFFFD\uB8E9
|
|
||||||
spring.redis.timeout=1000
|
|
||||||
|
|
||||||
#buildkey
|
|
||||||
m3u8.buildkey=buildkey
|
|
||||||
m3u8.buildkey2=buildkey2
|
|
||||||
schedule.video_convert_time=0 0/30 * * * ?
|
|
||||||
|
|
||||||
verification.expiried=5
|
|
||||||
|
|
||||||
|
|
||||||
h5doc.apiUrl=http://p2.ebh.net/i2.aspx?from=wuji
|
|
||||||
h5doc.appId=ebhapp1008
|
|
||||||
h5doc.appKey=89327008
|
|
||||||
swfdoc.apiUrl=http://p1.ebh.net/i.aspx?from=wuji
|
|
||||||
swfdoc.appId=ebhapp1005
|
|
||||||
swfdoc.appKey=89327005
|
|
||||||
swfdoc.callback.ipWhiteList=101.71.142.135
|
|
||||||
|
|
||||||
|
|
||||||
spring.mail.host=smtp.qq.com
|
|
||||||
spring.mail.username=system@wxbig.cn
|
|
||||||
#\u6388\u6743\u7801g\uFF0C\u5728QQ\u90AE\u7BB1\u5BA2\u6237\u7AEF\u751F\u6210 \u4FEE\u6539\u6210\u81EA\u5DF1\u7684 \u8BBE\u7F6E-\u8D26\u6237-\u5F00\u542F\u670D\u52A1-\u83B7\u53D6\u6388\u6743\u7801
|
|
||||||
spring.mail.password=ENC(AvNBF7xFcdy8792rgQOD2Ad0VhtF7ojqYrI2VJofsHs=)
|
|
||||||
spring.mail.properties.mail.smtp.auth=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.enable=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.required=true
|
|
||||||
|
|
||||||
# Max file size??10M
|
|
||||||
spring.servlet.multipart.max-file-size=10485760
|
|
||||||
# Max request size??10M
|
|
||||||
spring.servlet.multipart.max-request-size=10485760
|
|
||||||
|
|
||||||
ppt.des.key=
|
|
||||||
ppt.des.vi=
|
|
||||||
## ppt.server.url=https://weboffice.filesbox.cn/
|
|
||||||
ppt.server.url=https://dev.filesbox.cn/plugin/wo365/
|
|
||||||
ppt.replace.need=1
|
|
||||||
ppt.ip.whitelist=
|
|
||||||
cdn.domain=dev-cdn.filesbox.cn
|
|
||||||
|
|
||||||
mail.encode.fail = 414667543@qq.com
|
|
||||||
environment.type=dev
|
|
||||||
disk.default.size=1024
|
|
||||||
|
|
||||||
dingding.token=1w9efsuzUKVnOhBAdkIbsDjS4YvB
|
|
||||||
dingding.corpId=ding1f566670a125f1e7
|
|
||||||
dingding.aes.key=AwaB59e2B07A7XkRFjtrdzNdGyFmqNqZ5TIyvhMSmB9
|
|
||||||
dingding.app.key=dinglf3c9hvwae9azs2h
|
|
||||||
dingding.app.secret=Y1FAs4AGSJW6zv1yb8AMiGQCTQy1Gj9p3b5UQp9onz8n4PvNmv-_5ffLhNJuupqY
|
|
||||||
|
|
||||||
yz.view.convert.url=https://demo.filesbox.cn/fcscloud/composite/httpfile
|
|
||||||
yz.edit.convert.url=https://demo.filesbox.cn/plugin/yzwo
|
|
||||||
yz.edit.post.url=https://demo.filesbox.cn/plugin/yzwo/api.do
|
|
||||||
yz.fileId.prefix=d_
|
|
||||||
|
|
||||||
schedule.deleteCloudDownload=0 0 1 * * ?
|
|
||||||
|
|
||||||
# webdav ?? host
|
|
||||||
webdav.host=https://dev.filesbox.cn
|
|
||||||
|
|
||||||
enWechat.corpId=ww2d1e9bafb529c21f
|
|
||||||
enWechat.AgentId=1000010
|
|
||||||
enWechat.Secret=Q1Ae0Y8F1TUyDuYTagbZep7J1PRRDYRoAAvgWrLYLQE
|
|
||||||
|
|
||||||
wechat.web.wx_appid=wxeed6a7666ad6b030
|
|
||||||
wechat.web.wx_appSecret=3a2d4d810360ac367c3fe64d73af2e0f
|
|
||||||
wechat.app.wx_appid=wx283aec18f2335a85
|
|
||||||
wechat.app.wx_appSecret=b10e94cd00d0aeb6c67fdb5c43449423
|
|
||||||
|
|
||||||
mybatis-plus.mapper-locations=classpath*:mapper/*.xml
|
|
||||||
info.common.htmlPath.name=filesbox
|
|
||||||
|
|
||||||
#libreoffice\u914D\u7F6E\u4FE1\u606F
|
|
||||||
office.libreOfficeVersion=libreoffice6.3
|
|
||||||
office.shellFileName=docx.sh
|
|
||||||
office.shellFileDirectory=/
|
|
||||||
design.subPage.limitCount=512
|
|
||||||
schedule.msgWarning=*/20 * * * * ?
|
|
||||||
|
|
||||||
#\u626B\u7801\u767B\u5F55\u4E8C\u7EF4\u7801\u6709\u6548\u671F\u3002\u5355\u4F4D\uFF1A\u5206\u949F
|
|
||||||
scan.login.code.expire=3
|
|
||||||
|
|
||||||
webdav.rootContext[0]=/webdav/private
|
|
||||||
webdav.rootContext[1]=/webdav/favor
|
|
||||||
# Whether to print exception stacktrace in the response.
|
|
||||||
webdav.showExceptions=true
|
|
||||||
# Here you map you filesystem folder to be root for WebDAV. If not provided default structure will be created for the testing.
|
|
||||||
webdav.rootFolder=/
|
|
||||||
# WebSockets are available at this endpoint. WebSockets are used in the default GET page.
|
|
||||||
webdav.rootWebSocket=/
|
|
||||||
|
|
||||||
logging.level.com.svnlan.webdav.WebdavEndpoint=debug
|
|
||||||
logging.level.com.svnlan.user.dao=debug
|
|
||||||
logging.level.com.svnlan.home.dao=debug
|
|
||||||
logging.level.com.svnlan.manage.dao=debug
|
|
||||||
|
|
||||||
jasypt.encryptor.bean=encryptorBean
|
|
@ -1,114 +0,0 @@
|
|||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you under the Apache License, Version 2.0 (the
|
|
||||||
# "License"); you may not use this file except in compliance
|
|
||||||
# with the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# The agent namespace
|
|
||||||
agent.namespace=itest
|
|
||||||
|
|
||||||
# The service name in UI
|
|
||||||
agent.service_name=itest:disk
|
|
||||||
|
|
||||||
# The number of sampled traces per 3 seconds
|
|
||||||
# Negative or zero means off, by default
|
|
||||||
# agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
|
|
||||||
|
|
||||||
# Authentication active is based on backend setting, see application.yml for more details.
|
|
||||||
# agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
|
|
||||||
|
|
||||||
# The max amount of spans in a single segment.
|
|
||||||
# Through this config item, SkyWalking keep your application memory cost estimated.
|
|
||||||
# agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:150}
|
|
||||||
|
|
||||||
# If the operation name of the first span is included in this set, this segment should be ignored. Multiple values should be separated by `,`.
|
|
||||||
# agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will save all instrumented classes files in `/debugging` folder.
|
|
||||||
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
|
||||||
# agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will cache all instrumented classes files to memory or disk files (decided by class cache mode),
|
|
||||||
# allow other javaagent to enhance those classes that enhanced by SkyWalking agent.
|
|
||||||
# agent.is_cache_enhanced_class = ${SW_AGENT_CACHE_CLASS:false}
|
|
||||||
|
|
||||||
# The instrumented classes cache mode: MEMORY or FILE
|
|
||||||
# MEMORY: cache class bytes to memory, if instrumented classes is too many or too large, it may take up more memory
|
|
||||||
# FILE: cache class bytes in `/class-cache` folder, automatically clean up cached class files when the application exits
|
|
||||||
# agent.class_cache_mode = ${SW_AGENT_CLASS_CACHE_MODE:MEMORY}
|
|
||||||
|
|
||||||
# The operationName max length
|
|
||||||
# Notice, in the current practice, we don't recommend the length over 190.
|
|
||||||
# agent.operation_name_threshold=${SW_AGENT_OPERATION_NAME_THRESHOLD:150}
|
|
||||||
|
|
||||||
# The agent use gRPC plain text in default.
|
|
||||||
# If true, SkyWalking agent uses TLS even no CA file detected.
|
|
||||||
# agent.force_tls=${SW_AGENT_FORCE_TLS:false}
|
|
||||||
|
|
||||||
# If true, skywalking agent will enable profile when user create a new profile task. Otherwise disable profile.
|
|
||||||
# profile.active=${SW_AGENT_PROFILE_ACTIVE:true}
|
|
||||||
|
|
||||||
# Parallel monitor segment count
|
|
||||||
# profile.max_parallel=${SW_AGENT_PROFILE_MAX_PARALLEL:5}
|
|
||||||
|
|
||||||
# Max monitor segment time(minutes), if current segment monitor time out of limit, then stop it.
|
|
||||||
# profile.duration=${SW_AGENT_PROFILE_DURATION:10}
|
|
||||||
|
|
||||||
# Max dump thread stack depth
|
|
||||||
# profile.dump_max_stack_depth=${SW_AGENT_PROFILE_DUMP_MAX_STACK_DEPTH:500}
|
|
||||||
|
|
||||||
# Snapshot transport to backend buffer size
|
|
||||||
# profile.snapshot_transport_buffer_size=${SW_AGENT_PROFILE_SNAPSHOT_TRANSPORT_BUFFER_SIZE:50}
|
|
||||||
|
|
||||||
# Backend service addresses.
|
|
||||||
collector.backend_service=192.168.110.98:11800
|
|
||||||
|
|
||||||
# Logging file_name
|
|
||||||
logging.file_name=${SW_LOGGING_FILE_NAME:skywalking-api.log}
|
|
||||||
|
|
||||||
# Logging level
|
|
||||||
logging.level=${SW_LOGGING_LEVEL:INFO}
|
|
||||||
|
|
||||||
# Logging dir
|
|
||||||
# logging.dir=${SW_LOGGING_DIR:""}
|
|
||||||
|
|
||||||
# Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
|
|
||||||
# logging.max_file_size=${SW_LOGGING_MAX_FILE_SIZE:314572800}
|
|
||||||
|
|
||||||
# The max history log files. When rollover happened, if log files exceed this number,
|
|
||||||
# then the oldest file will be delete. Negative or zero means off, by default.
|
|
||||||
# logging.max_history_files=${SW_LOGGING_MAX_HISTORY_FILES:-1}
|
|
||||||
|
|
||||||
# Listed exceptions would not be treated as an error. Because in some codes, the exception is being used as a way of controlling business flow.
|
|
||||||
# Besides, the annotation named IgnoredException in the trace toolkit is another way to configure ignored exceptions.
|
|
||||||
# statuscheck.ignored_exceptions=${SW_STATUSCHECK_IGNORED_EXCEPTIONS:}
|
|
||||||
|
|
||||||
# The max recursive depth when checking the exception traced by the agent. Typically, we don't recommend setting this more than 10, which could cause a performance issue. Negative value and 0 would be ignored, which means all exceptions would make the span tagged in error status.
|
|
||||||
# statuscheck.max_recursive_depth=${SW_STATUSCHECK_MAX_RECURSIVE_DEPTH:1}
|
|
||||||
|
|
||||||
# Mount the specific folders of the plugins. Plugins in mounted folders would work.
|
|
||||||
plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations}
|
|
||||||
|
|
||||||
# Exclude activated plugins
|
|
||||||
# plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:}
|
|
||||||
|
|
||||||
# If set to true, the parameters of the sql (typically java.sql.PreparedStatement) would be collected.
|
|
||||||
plugin.jdbc.trace_sql_parameters=true
|
|
||||||
|
|
||||||
# Kafka producer configuration
|
|
||||||
plugin.kafka.bootstrap_servers=192.168.110.68:9092
|
|
||||||
# if you want to set namespace. please make sure the OAP server has set it in Kafka fetcher module
|
|
||||||
# plugin.kafka.namespace=${SW_KAFKA_NAMESPACE:""}
|
|
||||||
|
|
||||||
# Match spring bean with regex expression for classname
|
|
||||||
# plugin.springannotation.classname_match_regex=${SW_SPRINGANNOTATION_CLASSNAME_MATCH_REGEX:}
|
|
@ -1,161 +0,0 @@
|
|||||||
server.port=80
|
|
||||||
spring.application.name=disk
|
|
||||||
spring.profiles.active=test
|
|
||||||
|
|
||||||
instance.id=5
|
|
||||||
spring.main.allow-bean-definition-overriding=true
|
|
||||||
|
|
||||||
spring.datasource.url=jdbc:mysql://192.168.110.98:8066/cloud_disk?useUnicode=true&characterEncoding=utf8&useSSL=false&queryTimeout=6000
|
|
||||||
spring.datasource.username=root
|
|
||||||
spring.datasource.password=ENC(gmEtTGXR9cvB/sLYMdkAMDLPPD2XkJRv)
|
|
||||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
||||||
spring.datasource.initialization-mode=always
|
|
||||||
spring.datasource.continue-on-error=true
|
|
||||||
spring.datasource.testOnBorrow=true
|
|
||||||
spring.mvc.async.request-timeout=20000
|
|
||||||
spring.datasource.hikari.read-only=false
|
|
||||||
spring.datasource.hikari.connection-timeout=60000
|
|
||||||
spring.datasource.hikari.idle-timeout=60000
|
|
||||||
spring.datasource.hikari.validation-timeout=30000
|
|
||||||
spring.datasource.hikari.max-lifetime=60000
|
|
||||||
spring.datasource.hikari.login-timeout=5
|
|
||||||
spring.datasource.hikari.maximum-pool-size=200
|
|
||||||
spring.datasource.hikari.minimum-idle=5
|
|
||||||
spring.datasource.hikari.connection-test-query=SELECT 1
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-connections=2000
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-threads=1000
|
|
||||||
## Mybatis ??====================================
|
|
||||||
mybatis.mapperLocations=classpath:mapper/*.xml
|
|
||||||
user.default.lady=/static/common/image/head/lady.png
|
|
||||||
user.default.boy=/static/common/image/head/boy.png
|
|
||||||
user.default.girl=/static/common/image/head/girl.png
|
|
||||||
user.default.sir=/static/common/image/head/sir.png
|
|
||||||
user.default.headPic=/static/common/image/head/girl.png
|
|
||||||
loginLimit.level1.count=5
|
|
||||||
loginLimit.level1.interval=300
|
|
||||||
loginLimit.level2.count=10
|
|
||||||
loginLimit.level2.interval=300
|
|
||||||
loginLimit.level2.denyInterval=600
|
|
||||||
|
|
||||||
spring.messages.basename=i18n.messages
|
|
||||||
spring.messages.encoding=utf-8
|
|
||||||
|
|
||||||
|
|
||||||
## Redis \uFFFD\uFFFD\uFFFD\uFFFD
|
|
||||||
spring.redis.database=7
|
|
||||||
## Redis?????
|
|
||||||
spring.redis.cluster.nodes=192.168.110.148:18111,192.168.110.148:18222,192.168.110.148:18333,192.168.110.98:16111,192.168.110.98:16222,192.168.110.98:16333
|
|
||||||
|
|
||||||
## Redis???????
|
|
||||||
##spring.redis.port=8379
|
|
||||||
## Redis?????????????
|
|
||||||
spring.redis.password=123456
|
|
||||||
## ????????????????????
|
|
||||||
spring.redis.jedis.pool.max-active=300
|
|
||||||
## ???????????????????????
|
|
||||||
spring.redis.jedis.pool.max-wait=-1
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.max-idle=300
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.min-idle=0
|
|
||||||
## ??????????
|
|
||||||
spring.redis.timeout=300
|
|
||||||
|
|
||||||
#buildkey
|
|
||||||
m3u8.buildkey=buildkey
|
|
||||||
m3u8.buildkey2=buildkey2
|
|
||||||
schedule.video_convert_time=0 0/30 * * * ?
|
|
||||||
|
|
||||||
verification.expiried=5
|
|
||||||
|
|
||||||
|
|
||||||
h5doc.apiUrl=http://p2.ebh.net/i2.aspx?from=wuji
|
|
||||||
h5doc.appId=ebhapp1008
|
|
||||||
h5doc.appKey=89327008
|
|
||||||
swfdoc.apiUrl=http://p1.ebh.net/i.aspx?from=wuji
|
|
||||||
swfdoc.appId=ebhapp1005
|
|
||||||
swfdoc.appKey=89327005
|
|
||||||
swfdoc.callback.ipWhiteList=101.71.142.135
|
|
||||||
|
|
||||||
|
|
||||||
spring.mail.host=smtp.qq.com
|
|
||||||
spring.mail.username=system@wxbig.cn
|
|
||||||
#\u6388\u6743\u7801g\uFF0C\u5728QQ\u90AE\u7BB1\u5BA2\u6237\u7AEF\u751F\u6210 \u4FEE\u6539\u6210\u81EA\u5DF1\u7684 \u8BBE\u7F6E-\u8D26\u6237-\u5F00\u542F\u670D\u52A1-\u83B7\u53D6\u6388\u6743\u7801
|
|
||||||
spring.mail.password=ENC(AvNBF7xFcdy8792rgQOD2Ad0VhtF7ojqYrI2VJofsHs=)
|
|
||||||
spring.mail.properties.mail.smtp.auth=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.enable=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.required=true
|
|
||||||
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
|
|
||||||
# Max file size??10M
|
|
||||||
spring.servlet.multipart.max-file-size=10485760
|
|
||||||
# Max request size??10M
|
|
||||||
spring.servlet.multipart.max-request-size=10485760
|
|
||||||
|
|
||||||
|
|
||||||
ppt.des.key=
|
|
||||||
ppt.des.vi=
|
|
||||||
ppt.server.url=https://weboffice.filesbox.cn/
|
|
||||||
ppt.replace.need=0
|
|
||||||
ppt.ip.whitelist=
|
|
||||||
cdn.domain=test-cdn.filesbox.cn
|
|
||||||
|
|
||||||
mail.encode.fail = 414667543@qq.com
|
|
||||||
environment.type=itest
|
|
||||||
disk.default.size=1024
|
|
||||||
|
|
||||||
dingding.token=eGN4zltmKYsEfnmxLkWJigTFsv
|
|
||||||
dingding.corpId=ding1f566670a125f1e7
|
|
||||||
dingding.aes.key=gQg2uPqSEfduMkHMKBVfHcFC7kkKw0u6A9CMwfDD14w
|
|
||||||
dingding.app.key=dinguom4izrf3j7vy58k
|
|
||||||
dingding.app.secret=oy9btsUAr_WtuLBzJnbwcsz5h193_EgRwdKn-c4Nti5FAsRITFh7yZmg3LW_Lp-r
|
|
||||||
|
|
||||||
|
|
||||||
yz.view.convert.url=https://demo.filesbox.cn/fcscloud/composite/httpfile
|
|
||||||
yz.edit.convert.url=https://demo.filesbox.cn/plugin/yzwo
|
|
||||||
yz.edit.post.url=https://demo.filesbox.cn/plugin/yzwo/api.do
|
|
||||||
yz.fileId.prefix=i_
|
|
||||||
|
|
||||||
schedule.deleteCloudDownload=0 0 1 * * ?
|
|
||||||
webdav.host=https://test.filesbox.cn
|
|
||||||
|
|
||||||
enWechat.corpId=ww2d1e9bafb529c21f
|
|
||||||
enWechat.AgentId=100009
|
|
||||||
enWechat.Secret=r1V4SE4ZNZRWRMrlAK-be4qDs40OCvYpJ48tvXleghc
|
|
||||||
|
|
||||||
wechat.web.wx_appid=wxeed6a7666ad6b030
|
|
||||||
wechat.web.wx_appSecret=3a2d4d810360ac367c3fe64d73af2e0f
|
|
||||||
wechat.app.wx_appid=wx283aec18f2335a85
|
|
||||||
wechat.app.wx_appSecret=b10e94cd00d0aeb6c67fdb5c43449423
|
|
||||||
|
|
||||||
mybatis-plus.mapper-locations=classpath*:mapper/*.xml
|
|
||||||
info.common.htmlPath.name=filesbox
|
|
||||||
|
|
||||||
#libreoffice\u914D\u7F6E\u4FE1\u606F
|
|
||||||
office.libreOfficeVersion=libreoffice6.3
|
|
||||||
office.shellFileName=docx.sh
|
|
||||||
office.shellFileDirectory=/
|
|
||||||
design.subPage.limitCount=512
|
|
||||||
schedule.msgWarning=*/20 * * * * ?
|
|
||||||
|
|
||||||
#\u626B\u7801\u767B\u5F55\u4E8C\u7EF4\u7801\u6709\u6548\u671F\u3002\u5355\u4F4D\uFF1A\u5206\u949F
|
|
||||||
scan.login.code.expire=3
|
|
||||||
|
|
||||||
webdav.rootContext[0]=/webdav/private
|
|
||||||
webdav.rootContext[1]=/webdav/favor
|
|
||||||
webdav.license=D:/License.lic
|
|
||||||
# Whether to print exception stacktrace in the response.
|
|
||||||
webdav.showExceptions=true
|
|
||||||
# Here you map you filesystem folder to be root for WebDAV. If not provided default structure will be created for the testing.
|
|
||||||
webdav.rootFolder=/
|
|
||||||
# WebSockets are available at this endpoint. WebSockets are used in the default GET page.
|
|
||||||
webdav.rootWebSocket=/
|
|
||||||
|
|
||||||
logging.level.com.svnlan.user.dao=debug
|
|
||||||
logging.level.com.svnlan.home.dao=debug
|
|
||||||
logging.level.com.svnlan.manage.dao=debug
|
|
||||||
logging.level.com.svnlan.webdav.WebdavEndpoint=debug
|
|
||||||
jasypt.encryptor.bean=encryptorBean
|
|
||||||
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
|||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you under the Apache License, Version 2.0 (the
|
|
||||||
# "License"); you may not use this file except in compliance
|
|
||||||
# with the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# The agent namespace
|
|
||||||
agent.namespace=${SW_AGENT_NAMESPACE:pre}
|
|
||||||
|
|
||||||
# The service name in UI
|
|
||||||
agent.service_name=${SW_AGENT_NAME:disk}
|
|
||||||
|
|
||||||
# The number of sampled traces per 3 seconds
|
|
||||||
# Negative number means sample traces as many as possible, most likely 100%
|
|
||||||
# agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
|
|
||||||
|
|
||||||
# Authentication active is based on backend setting, see application.yml for more details.
|
|
||||||
# agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
|
|
||||||
|
|
||||||
# The max amount of spans in a single segment.
|
|
||||||
# Through this config item, skywalking keep your application memory cost estimated.
|
|
||||||
# agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:300}
|
|
||||||
|
|
||||||
# Ignore the segments if their operation names start with these suffix.
|
|
||||||
# agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
||||||
|
|
||||||
# If true, skywalking agent will save all instrumented classes files in `/debugging` folder.
|
|
||||||
# Skywalking team may ask for these files in order to resolve compatible problem.
|
|
||||||
# agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
|
|
||||||
|
|
||||||
# Backend service addresses.
|
|
||||||
collector.backend_service=${SW_AGENT_COLLECTOR_BACKEND_SERVICES:192.168.101.31:11800}
|
|
||||||
|
|
||||||
# Logging level
|
|
||||||
logging.level=${SW_LOGGING_LEVEL:DEBUG}
|
|
@ -1,158 +0,0 @@
|
|||||||
server.port=80
|
|
||||||
spring.application.name=disk
|
|
||||||
spring.profiles.active=pre
|
|
||||||
|
|
||||||
instance.id=5
|
|
||||||
spring.main.allow-bean-definition-overriding=true
|
|
||||||
|
|
||||||
spring.datasource.url=jdbc:mysql://101.71.142.95:16033/cloud_disk_pre?useUnicode=true&characterEncoding=utf8&useSSL=false&autoReconnect=true&failOverReadOnly=false&allowMultiQueries=true
|
|
||||||
spring.datasource.username=dev
|
|
||||||
spring.datasource.password=dev123456
|
|
||||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
||||||
spring.datasource.initialization-mode=always
|
|
||||||
spring.datasource.continue-on-error=true
|
|
||||||
spring.datasource.testOnBorrow=true
|
|
||||||
spring.mvc.async.request-timeout=20000
|
|
||||||
spring.datasource.hikari.read-only=false
|
|
||||||
spring.datasource.hikari.connection-timeout=60000
|
|
||||||
spring.datasource.hikari.idle-timeout=60000
|
|
||||||
spring.datasource.hikari.validation-timeout=30000
|
|
||||||
spring.datasource.hikari.max-lifetime=60000
|
|
||||||
spring.datasource.hikari.login-timeout=5
|
|
||||||
spring.datasource.hikari.maximum-pool-size=200
|
|
||||||
spring.datasource.hikari.minimum-idle=5
|
|
||||||
spring.datasource.hikari.connection-test-query=SELECT 1 FROM DUAL
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-connections=2000
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-threads=1000
|
|
||||||
## Mybatis ??====================================
|
|
||||||
mybatis.mapperLocations=classpath:mapper/*.xml
|
|
||||||
user.default.lady=/static/common/image/head/lady.png
|
|
||||||
user.default.boy=/static/common/image/head/boy.png
|
|
||||||
user.default.girl=/static/common/image/head/girl.png
|
|
||||||
user.default.sir=/static/common/image/head/sir.png
|
|
||||||
user.default.headPic=/static/common/image/head/girl.png
|
|
||||||
loginLimit.level1.count=5
|
|
||||||
loginLimit.level1.interval=300
|
|
||||||
loginLimit.level2.count=10
|
|
||||||
loginLimit.level2.interval=300
|
|
||||||
loginLimit.level2.denyInterval=600
|
|
||||||
|
|
||||||
spring.messages.basename=i18n.messages
|
|
||||||
spring.messages.encoding=utf-8
|
|
||||||
|
|
||||||
## Redis ????
|
|
||||||
spring.redis.database=7
|
|
||||||
## Redis?????
|
|
||||||
spring.redis.cluster.nodes=192.168.110.148:19111,192.168.110.148:19222,192.168.110.148:19333
|
|
||||||
|
|
||||||
## Redis???????
|
|
||||||
##spring.redis.port=8379
|
|
||||||
## Redis?????????????
|
|
||||||
spring.redis.password=123456
|
|
||||||
## ????????????????????
|
|
||||||
spring.redis.jedis.pool.max-active=8
|
|
||||||
## ???????????????????????
|
|
||||||
spring.redis.jedis.pool.max-wait=-1
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.max-idle=8
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.min-idle=0
|
|
||||||
## ??????????
|
|
||||||
spring.redis.timeout=300
|
|
||||||
|
|
||||||
#buildkey
|
|
||||||
m3u8.buildkey=buildkey
|
|
||||||
m3u8.buildkey2=buildkey2
|
|
||||||
schedule.video_convert_time=0 0/30 * * * ?
|
|
||||||
|
|
||||||
verification.expiried=5
|
|
||||||
|
|
||||||
|
|
||||||
h5doc.apiUrl=http://p2.ebh.net/i2.aspx?from=wuji
|
|
||||||
h5doc.appId=ebhapp1008
|
|
||||||
h5doc.appKey=89327008
|
|
||||||
swfdoc.apiUrl=http://p1.ebh.net/i.aspx?from=wuji
|
|
||||||
swfdoc.appId=ebhapp1005
|
|
||||||
swfdoc.appKey=89327005
|
|
||||||
swfdoc.callback.ipWhiteList=101.71.142.135
|
|
||||||
|
|
||||||
|
|
||||||
spring.mail.host=smtp.qq.com
|
|
||||||
spring.mail.username=system@wxbig.cn
|
|
||||||
#\u6388\u6743\u7801g\uFF0C\u5728QQ\u90AE\u7BB1\u5BA2\u6237\u7AEF\u751F\u6210 \u4FEE\u6539\u6210\u81EA\u5DF1\u7684 \u8BBE\u7F6E-\u8D26\u6237-\u5F00\u542F\u670D\u52A1-\u83B7\u53D6\u6388\u6743\u7801
|
|
||||||
spring.mail.password=ENC(AvNBF7xFcdy8792rgQOD2Ad0VhtF7ojqYrI2VJofsHs=)
|
|
||||||
spring.mail.properties.mail.smtp.auth=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.enable=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.required=true
|
|
||||||
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
|
|
||||||
# Max file size??10M
|
|
||||||
spring.servlet.multipart.max-file-size=10485760
|
|
||||||
# Max request size??10M
|
|
||||||
spring.servlet.multipart.max-request-size=10485760
|
|
||||||
|
|
||||||
|
|
||||||
ppt.des.key=
|
|
||||||
ppt.des.vi=
|
|
||||||
ppt.server.url=https://weboffice.filesbox.cn/
|
|
||||||
ppt.replace.need=0
|
|
||||||
ppt.ip.whitelist=
|
|
||||||
cdn.domain=
|
|
||||||
|
|
||||||
mail.encode.fail = 414667543@qq.com
|
|
||||||
environment.type=pre
|
|
||||||
disk.default.size=1024
|
|
||||||
|
|
||||||
dingding.token=Fl7pOJfYHvnKRHh9fIDUHbWx6cQpxv3Hn8wPiY2rHvbOGrWN
|
|
||||||
dingding.corpId=ding1f566670a125f1e7
|
|
||||||
dingding.aes.key=NRhboNOBa8zsIg5zWpcCTzMrUqLVEvRHS2yDaElPcwa
|
|
||||||
dingding.app.key=dinglf3c9hvwae9azs2h
|
|
||||||
dingding.app.secret=oy9btsUAr_WtuLBzJnbwcsz5h193_EgRwdKn-c4Nti5FAsRITFh7yZmg3LW_Lp-r
|
|
||||||
|
|
||||||
yz.view.convert.url=https://demo.filesbox.cn/fcscloud/composite/httpfile
|
|
||||||
yz.edit.convert.url=https://demo.filesbox.cn/plugin/yzwo
|
|
||||||
yz.edit.post.url=https://demo.filesbox.cn/plugin/yzwo/api.do
|
|
||||||
yz.fileId.prefix=p_
|
|
||||||
|
|
||||||
schedule.deleteCloudDownload=0 0 1 * * ?
|
|
||||||
webdav.host=https://pre.filesbox.cn
|
|
||||||
|
|
||||||
enWechat.corpId=ww2d1e9bafb529c21f
|
|
||||||
enWechat.AgentId=100009
|
|
||||||
enWechat.Secret=r1V4SE4ZNZRWRMrlAK-be4qDs40OCvYpJ48tvXleghc
|
|
||||||
|
|
||||||
wechat.web.wx_appid=wxeed6a7666ad6b030
|
|
||||||
wechat.web.wx_appSecret=3a2d4d810360ac367c3fe64d73af2e0f
|
|
||||||
wechat.app.wx_appid=wx283aec18f2335a85
|
|
||||||
wechat.app.wx_appSecret=b10e94cd00d0aeb6c67fdb5c43449423
|
|
||||||
|
|
||||||
mybatis-plus.mapper-locations=classpath*:mapper/*.xml
|
|
||||||
info.common.htmlPath.name=filesbox
|
|
||||||
|
|
||||||
#libreoffice\u914D\u7F6E\u4FE1\u606F
|
|
||||||
office.libreOfficeVersion=libreoffice6.3
|
|
||||||
office.shellFileName=docx.sh
|
|
||||||
office.shellFileDirectory=/
|
|
||||||
design.subPage.limitCount=512
|
|
||||||
schedule.msgWarning=*/20 * * * * ?
|
|
||||||
|
|
||||||
#\u626B\u7801\u767B\u5F55\u4E8C\u7EF4\u7801\u6709\u6548\u671F\u3002\u5355\u4F4D\uFF1A\u5206\u949F
|
|
||||||
scan.login.code.expire=3
|
|
||||||
|
|
||||||
webdav.rootContext[0]=/webdav/private
|
|
||||||
webdav.rootContext[1]=/webdav/favor
|
|
||||||
webdav.license=D:/License.lic
|
|
||||||
# Whether to print exception stacktrace in the response.
|
|
||||||
webdav.showExceptions=true
|
|
||||||
# Here you map you filesystem folder to be root for WebDAV. If not provided default structure will be created for the testing.
|
|
||||||
webdav.rootFolder=/uploads
|
|
||||||
# WebSockets are available at this endpoint. WebSockets are used in the default GET page.
|
|
||||||
webdav.rootWebSocket=/
|
|
||||||
logging.level.root=info
|
|
||||||
logging.level.com.svnlan.user.dao=debug
|
|
||||||
logging.level.com.svnlan.home.dao=debug
|
|
||||||
logging.level.com.svnlan.manage.dao=debug
|
|
||||||
logging.level.com.svnlan.webdav=debug
|
|
||||||
logging.level.org.jooq=debug
|
|
||||||
jasypt.encryptor.bean=encryptorBean
|
|
@ -1,98 +0,0 @@
|
|||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you under the Apache License, Version 2.0 (the
|
|
||||||
# "License"); you may not use this file except in compliance
|
|
||||||
# with the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# The agent namespace
|
|
||||||
agent.namespace=pro
|
|
||||||
|
|
||||||
# The service name in UI
|
|
||||||
agent.service_name=disk
|
|
||||||
|
|
||||||
# The number of sampled traces per 3 seconds
|
|
||||||
# Negative or zero means off, by default
|
|
||||||
# agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
|
|
||||||
|
|
||||||
# Authentication active is based on backend setting, see application.yml for more details.
|
|
||||||
# agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
|
|
||||||
|
|
||||||
# The max amount of spans in a single segment.
|
|
||||||
# Through this config item, SkyWalking keep your application memory cost estimated.
|
|
||||||
# agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:300}
|
|
||||||
|
|
||||||
# Ignore the segments if their operation names end with these suffix.
|
|
||||||
# agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will save all instrumented classes files in `/debugging` folder.
|
|
||||||
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
|
||||||
# agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
|
|
||||||
|
|
||||||
# The operationName max length
|
|
||||||
# agent.operation_name_threshold=${SW_AGENT_OPERATION_NAME_THRESHOLD:500}
|
|
||||||
|
|
||||||
# If true, skywalking agent will enable profile when user create a new profile task. Otherwise disable profile.
|
|
||||||
# profile.active=${SW_AGENT_PROFILE_ACTIVE:true}
|
|
||||||
|
|
||||||
# Parallel monitor segment count
|
|
||||||
# profile.max_parallel=${SW_AGENT_PROFILE_MAX_PARALLEL:5}
|
|
||||||
|
|
||||||
# Max monitor segment time(minutes), if current segment monitor time out of limit, then stop it.
|
|
||||||
# profile.duration=${SW_AGENT_PROFILE_DURATION:10}
|
|
||||||
|
|
||||||
# Max dump thread stack depth
|
|
||||||
# profile.dump_max_stack_depth=${SW_AGENT_PROFILE_DUMP_MAX_STACK_DEPTH:500}
|
|
||||||
|
|
||||||
# Snapshot transport to backend buffer size
|
|
||||||
# profile.snapshot_transport_buffer_size=${SW_AGENT_PROFILE_SNAPSHOT_TRANSPORT_BUFFER_SIZE:50}
|
|
||||||
|
|
||||||
# Backend service addresses.
|
|
||||||
collector.backend_service=192.168.0.20:11800
|
|
||||||
|
|
||||||
# Logging file_name
|
|
||||||
logging.file_name=${SW_LOGGING_FILE_NAME:skywalking-api.log}
|
|
||||||
|
|
||||||
# Logging level
|
|
||||||
logging.level=${SW_LOGGING_LEVEL:INFO}
|
|
||||||
|
|
||||||
# Logging dir
|
|
||||||
# logging.dir=${SW_LOGGING_DIR:""}
|
|
||||||
|
|
||||||
# Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
|
|
||||||
# logging.max_file_size=${SW_LOGGING_MAX_FILE_SIZE:314572800}
|
|
||||||
|
|
||||||
# The max history log files. When rollover happened, if log files exceed this number,
|
|
||||||
# then the oldest file will be delete. Negative or zero means off, by default.
|
|
||||||
# logging.max_history_files=${SW_LOGGING_MAX_HISTORY_FILES:-1}
|
|
||||||
|
|
||||||
# Listed exceptions would not be treated as an error. Because in some codes, the exception is being used as a way of controlling business flow.
|
|
||||||
# Besides, the annotation named IgnoredException in the trace toolkit is another way to configure ignored exceptions.
|
|
||||||
# statuscheck.ignored_exceptions=${SW_STATUSCHECK_IGNORED_EXCEPTIONS:}
|
|
||||||
|
|
||||||
# The max recursive depth when checking the exception traced by the agent. Typically, we don't recommend setting this more than 10, which could cause a performance issue. Negative value and 0 would be ignored, which means all exceptions would make the span tagged in error status.
|
|
||||||
# statuscheck.max_recursive_depth=${SW_STATUSCHECK_MAX_RECURSIVE_DEPTH:1}
|
|
||||||
|
|
||||||
# Mount the specific folders of the plugins. Plugins in mounted folders would work.
|
|
||||||
plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations}
|
|
||||||
|
|
||||||
# Exclude activated plugins
|
|
||||||
# plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:}
|
|
||||||
|
|
||||||
# mysql plugin configuration
|
|
||||||
plugin.jdbc.trace_sql_parameters=true
|
|
||||||
|
|
||||||
# Kafka producer configuration
|
|
||||||
plugin.kafka.bootstrap_servers=node1.kafka.mw.pro:9092,node2.kafka.mw.pro:9092,node3.kafka.mw.pro:9092
|
|
||||||
|
|
||||||
# Match spring bean with regex expression for classname
|
|
||||||
# plugin.springannotation.classname_match_regex=${SW_SPRINGANNOTATION_CLASSNAME_MATCH_REGEX:}
|
|
@ -1,153 +0,0 @@
|
|||||||
server.port=80
|
|
||||||
spring.application.name=disk
|
|
||||||
spring.profiles.active=pro
|
|
||||||
|
|
||||||
instance.id=5
|
|
||||||
spring.main.allow-bean-definition-overriding=true
|
|
||||||
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
|
|
||||||
spring.datasource.url=jdbc:mysql://tidb.db.pro:3306/cloud_disk?useUnicode=true&characterEncoding=utf8&useSSL=false&autoReconnect=true&failOverReadOnly=false&allowMultiQueries=true
|
|
||||||
spring.datasource.username=web
|
|
||||||
spring.datasource.password=ENC(h01nogcIQ6VuVs2i3P+Zr4pSDnnicYp7)
|
|
||||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
||||||
spring.datasource.initialization-mode=always
|
|
||||||
spring.datasource.continue-on-error=true
|
|
||||||
spring.datasource.testOnBorrow=true
|
|
||||||
|
|
||||||
spring.datasource.hikari.read-only=false
|
|
||||||
spring.datasource.hikari.connection-timeout=60000
|
|
||||||
spring.datasource.hikari.idle-timeout=60000
|
|
||||||
spring.datasource.hikari.validation-timeout=30000
|
|
||||||
spring.datasource.hikari.max-lifetime=60000
|
|
||||||
spring.datasource.hikari.login-timeout=5
|
|
||||||
spring.datasource.hikari.maximum-pool-size=200
|
|
||||||
spring.datasource.hikari.minimum-idle=5
|
|
||||||
spring.datasource.hikari.connection-test-query=SELECT 1 FROM DUAL
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-connections=2000
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-threads=1000
|
|
||||||
## Mybatis ??====================================
|
|
||||||
mybatis.mapperLocations=classpath:mapper/*.xml
|
|
||||||
user.default.lady=/static/common/image/head/lady.png
|
|
||||||
user.default.boy=/static/common/image/head/boy.png
|
|
||||||
user.default.girl=/static/common/image/head/girl.png
|
|
||||||
user.default.sir=/static/common/image/head/sir.png
|
|
||||||
user.default.headPic=/static/common/image/head/girl.png
|
|
||||||
loginLimit.level1.count=5
|
|
||||||
loginLimit.level1.interval=300
|
|
||||||
loginLimit.level2.count=10
|
|
||||||
loginLimit.level2.interval=300
|
|
||||||
loginLimit.level2.denyInterval=600
|
|
||||||
|
|
||||||
spring.messages.basename=i18n.messages
|
|
||||||
spring.messages.encoding=utf-8
|
|
||||||
|
|
||||||
## Redis ??====================================
|
|
||||||
## Redis?????????0?
|
|
||||||
spring.redis.database=0
|
|
||||||
## Redis?????
|
|
||||||
spring.redis.host=redis
|
|
||||||
|
|
||||||
spring.redis.port=6379
|
|
||||||
## Redis?????????????
|
|
||||||
spring.redis.password=
|
|
||||||
## ????????????????????
|
|
||||||
spring.redis.jedis.pool.max-active=200
|
|
||||||
## ???????????????????????
|
|
||||||
spring.redis.jedis.pool.max-wait=-1
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.max-idle=200
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.min-idle=0
|
|
||||||
## ??????????
|
|
||||||
spring.redis.timeout=300
|
|
||||||
|
|
||||||
#buildkey
|
|
||||||
m3u8.buildkey=buildkey
|
|
||||||
m3u8.buildkey2=buildkey2
|
|
||||||
schedule.video_convert_time=0 0/30 * * * ?
|
|
||||||
|
|
||||||
verification.expiried=5
|
|
||||||
|
|
||||||
|
|
||||||
h5doc.apiUrl=http://p2.ebh.net/i2.aspx?from=wuji
|
|
||||||
h5doc.appId=ebhapp1008
|
|
||||||
h5doc.appKey=89327008
|
|
||||||
swfdoc.apiUrl=http://p1.ebh.net/i.aspx?from=wuji
|
|
||||||
swfdoc.appId=ebhapp1005
|
|
||||||
swfdoc.appKey=89327005
|
|
||||||
swfdoc.callback.ipWhiteList=101.71.142.135
|
|
||||||
|
|
||||||
|
|
||||||
spring.mail.host=smtp.qq.com
|
|
||||||
spring.mail.username=system@wxbig.cn
|
|
||||||
#\u6388\u6743\u7801g\uFF0C\u5728QQ\u90AE\u7BB1\u5BA2\u6237\u7AEF\u751F\u6210 \u4FEE\u6539\u6210\u81EA\u5DF1\u7684 \u8BBE\u7F6E-\u8D26\u6237-\u5F00\u542F\u670D\u52A1-\u83B7\u53D6\u6388\u6743\u7801
|
|
||||||
spring.mail.password=ENC(AvNBF7xFcdy8792rgQOD2Ad0VhtF7ojqYrI2VJofsHs=)
|
|
||||||
spring.mail.properties.mail.smtp.auth=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.enable=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.required=true
|
|
||||||
|
|
||||||
|
|
||||||
# Max file size??10M
|
|
||||||
spring.servlet.multipart.max-file-size=10485760
|
|
||||||
# Max request size??10M
|
|
||||||
spring.servlet.multipart.max-request-size=10485760
|
|
||||||
|
|
||||||
|
|
||||||
ppt.des.key=
|
|
||||||
ppt.des.vi=
|
|
||||||
ppt.server.url=https://demo.filesbox.cn/plugin/wo365/
|
|
||||||
ppt.replace.need=0
|
|
||||||
ppt.ip.whitelist=
|
|
||||||
cdn.domain=cdn.filesbox.cn
|
|
||||||
|
|
||||||
mail.encode.fail = 414667543@qq.com
|
|
||||||
environment.type=pro
|
|
||||||
disk.default.size=1024
|
|
||||||
|
|
||||||
dingding.token=IHQCLrVBXNzB179pwdarwG
|
|
||||||
dingding.corpId=ding1f566670a125f1e7
|
|
||||||
dingding.aes.key=Fl7pOJfYHvnKRHh9fIDUHbWx6cQpxv3Hn8wPiY2rHvbOGrWN
|
|
||||||
dingding.app.key=dingyw0a2j25u6cjqifl
|
|
||||||
dingding.app.secret=lZdcpljJWmtFK1DqhEtVftYuqLfNeKUfTJeFfPhtvgRHWvzAw5tUyRuIvzFe4hlH
|
|
||||||
|
|
||||||
yz.view.convert.url=https://demo.filesbox.cn/fcscloud/composite/httpfile
|
|
||||||
yz.edit.convert.url=https://demo.filesbox.cn/plugin/yzwo
|
|
||||||
yz.edit.post.url=https://demo.filesbox.cn/plugin/yzwo/api.do
|
|
||||||
yz.fileId.prefix=o_
|
|
||||||
|
|
||||||
schedule.deleteCloudDownload=0 0 1 * * ?
|
|
||||||
webdav.host=https://demo.filesbox.cn
|
|
||||||
|
|
||||||
|
|
||||||
enWechat.corpId=ww2d1e9bafb529c21f
|
|
||||||
enWechat.AgentId=100008
|
|
||||||
enWechat.Secret=Vy2WaVIblMP57pjmpon_bVGTqmbU2ls7STAgWXSPvak
|
|
||||||
|
|
||||||
wechat.web.wx_appid=wxeed6a7666ad6b030
|
|
||||||
wechat.web.wx_appSecret=3a2d4d810360ac367c3fe64d73af2e0f
|
|
||||||
wechat.app.wx_appid=wx283aec18f2335a85
|
|
||||||
wechat.app.wx_appSecret=b10e94cd00d0aeb6c67fdb5c43449423
|
|
||||||
|
|
||||||
mybatis-plus.mapper-locations=classpath*:mapper/*.xml
|
|
||||||
info.common.htmlPath.name=filesbox
|
|
||||||
|
|
||||||
#libreoffice\u914D\u7F6E\u4FE1\u606F
|
|
||||||
office.libreOfficeVersion=libreoffice6.3
|
|
||||||
office.shellFileName=docx.sh
|
|
||||||
office.shellFileDirectory=/
|
|
||||||
design.subPage.limitCount=512
|
|
||||||
schedule.msgWarning=*/20 * * * * ?
|
|
||||||
|
|
||||||
#\u626B\u7801\u767B\u5F55\u4E8C\u7EF4\u7801\u6709\u6548\u671F\u3002\u5355\u4F4D\uFF1A\u5206\u949F
|
|
||||||
scan.login.code.expire=3
|
|
||||||
|
|
||||||
webdav.rootContext[0]=/webdav/private
|
|
||||||
webdav.rootContext[1]=/webdav/favor
|
|
||||||
# Whether to print exception stacktrace in the response.
|
|
||||||
webdav.showExceptions=false
|
|
||||||
# Here you map you filesystem folder to be root for WebDAV. If not provided default structure will be created for the testing.
|
|
||||||
webdav.rootFolder=/
|
|
||||||
# WebSockets are available at this endpoint. WebSockets are used in the default GET page.
|
|
||||||
webdav.rootWebSocket=/
|
|
||||||
jasypt.encryptor.bean=encryptorBean
|
|
@ -1,98 +0,0 @@
|
|||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you under the Apache License, Version 2.0 (the
|
|
||||||
# "License"); you may not use this file except in compliance
|
|
||||||
# with the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
# The agent namespace
|
|
||||||
agent.namespace=pufay
|
|
||||||
|
|
||||||
# The service name in UI
|
|
||||||
agent.service_name=disk
|
|
||||||
|
|
||||||
# The number of sampled traces per 3 seconds
|
|
||||||
# Negative or zero means off, by default
|
|
||||||
# agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
|
|
||||||
|
|
||||||
# Authentication active is based on backend setting, see application.yml for more details.
|
|
||||||
# agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
|
|
||||||
|
|
||||||
# The max amount of spans in a single segment.
|
|
||||||
# Through this config item, SkyWalking keep your application memory cost estimated.
|
|
||||||
# agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:300}
|
|
||||||
|
|
||||||
# Ignore the segments if their operation names end with these suffix.
|
|
||||||
# agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
||||||
|
|
||||||
# If true, SkyWalking agent will save all instrumented classes files in `/debugging` folder.
|
|
||||||
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
|
||||||
# agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
|
|
||||||
|
|
||||||
# The operationName max length
|
|
||||||
# agent.operation_name_threshold=${SW_AGENT_OPERATION_NAME_THRESHOLD:500}
|
|
||||||
|
|
||||||
# If true, skywalking agent will enable profile when user create a new profile task. Otherwise disable profile.
|
|
||||||
# profile.active=${SW_AGENT_PROFILE_ACTIVE:true}
|
|
||||||
|
|
||||||
# Parallel monitor segment count
|
|
||||||
# profile.max_parallel=${SW_AGENT_PROFILE_MAX_PARALLEL:5}
|
|
||||||
|
|
||||||
# Max monitor segment time(minutes), if current segment monitor time out of limit, then stop it.
|
|
||||||
# profile.duration=${SW_AGENT_PROFILE_DURATION:10}
|
|
||||||
|
|
||||||
# Max dump thread stack depth
|
|
||||||
# profile.dump_max_stack_depth=${SW_AGENT_PROFILE_DUMP_MAX_STACK_DEPTH:500}
|
|
||||||
|
|
||||||
# Snapshot transport to backend buffer size
|
|
||||||
# profile.snapshot_transport_buffer_size=${SW_AGENT_PROFILE_SNAPSHOT_TRANSPORT_BUFFER_SIZE:50}
|
|
||||||
|
|
||||||
# Backend service addresses.
|
|
||||||
collector.backend_service=192.168.0.20:11800
|
|
||||||
|
|
||||||
# Logging file_name
|
|
||||||
logging.file_name=${SW_LOGGING_FILE_NAME:skywalking-api.log}
|
|
||||||
|
|
||||||
# Logging level
|
|
||||||
logging.level=${SW_LOGGING_LEVEL:INFO}
|
|
||||||
|
|
||||||
# Logging dir
|
|
||||||
# logging.dir=${SW_LOGGING_DIR:""}
|
|
||||||
|
|
||||||
# Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
|
|
||||||
# logging.max_file_size=${SW_LOGGING_MAX_FILE_SIZE:314572800}
|
|
||||||
|
|
||||||
# The max history log files. When rollover happened, if log files exceed this number,
|
|
||||||
# then the oldest file will be delete. Negative or zero means off, by default.
|
|
||||||
# logging.max_history_files=${SW_LOGGING_MAX_HISTORY_FILES:-1}
|
|
||||||
|
|
||||||
# Listed exceptions would not be treated as an error. Because in some codes, the exception is being used as a way of controlling business flow.
|
|
||||||
# Besides, the annotation named IgnoredException in the trace toolkit is another way to configure ignored exceptions.
|
|
||||||
# statuscheck.ignored_exceptions=${SW_STATUSCHECK_IGNORED_EXCEPTIONS:}
|
|
||||||
|
|
||||||
# The max recursive depth when checking the exception traced by the agent. Typically, we don't recommend setting this more than 10, which could cause a performance issue. Negative value and 0 would be ignored, which means all exceptions would make the span tagged in error status.
|
|
||||||
# statuscheck.max_recursive_depth=${SW_STATUSCHECK_MAX_RECURSIVE_DEPTH:1}
|
|
||||||
|
|
||||||
# Mount the specific folders of the plugins. Plugins in mounted folders would work.
|
|
||||||
plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations}
|
|
||||||
|
|
||||||
# Exclude activated plugins
|
|
||||||
# plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:}
|
|
||||||
|
|
||||||
# mysql plugin configuration
|
|
||||||
plugin.jdbc.trace_sql_parameters=true
|
|
||||||
|
|
||||||
# Kafka producer configuration
|
|
||||||
plugin.kafka.bootstrap_servers=node1.kafka.mw.pro:9092,node2.kafka.mw.pro:9092,node3.kafka.mw.pro:9092
|
|
||||||
|
|
||||||
# Match spring bean with regex expression for classname
|
|
||||||
# plugin.springannotation.classname_match_regex=${SW_SPRINGANNOTATION_CLASSNAME_MATCH_REGEX:}
|
|
@ -1,152 +0,0 @@
|
|||||||
server.port=80
|
|
||||||
spring.application.name=disk
|
|
||||||
spring.profiles.active=pufay
|
|
||||||
|
|
||||||
instance.id=5
|
|
||||||
spring.main.allow-bean-definition-overriding=true
|
|
||||||
logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG
|
|
||||||
spring.datasource.url=jdbc:mysql://tidb.db.pro:3306/cloud_disk_pufay?useUnicode=true&characterEncoding=utf8&useSSL=false&autoReconnect=true&failOverReadOnly=false&allowMultiQueries=true
|
|
||||||
spring.datasource.username=web
|
|
||||||
spring.datasource.password=ENC(h01nogcIQ6VuVs2i3P+Zr4pSDnnicYp7)
|
|
||||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
||||||
spring.datasource.initialization-mode=always
|
|
||||||
spring.datasource.continue-on-error=true
|
|
||||||
spring.datasource.testOnBorrow=true
|
|
||||||
|
|
||||||
spring.datasource.hikari.read-only=false
|
|
||||||
spring.datasource.hikari.connection-timeout=60000
|
|
||||||
spring.datasource.hikari.idle-timeout=60000
|
|
||||||
spring.datasource.hikari.validation-timeout=30000
|
|
||||||
spring.datasource.hikari.max-lifetime=60000
|
|
||||||
spring.datasource.hikari.login-timeout=5
|
|
||||||
spring.datasource.hikari.maximum-pool-size=200
|
|
||||||
spring.datasource.hikari.minimum-idle=5
|
|
||||||
spring.datasource.hikari.connection-test-query=SELECT 1 FROM DUAL
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-connections=2000
|
|
||||||
#?????
|
|
||||||
server.tomcat.max-threads=1000
|
|
||||||
## Mybatis ??====================================
|
|
||||||
mybatis.mapperLocations=classpath:mapper/*.xml
|
|
||||||
user.default.lady=/static/common/image/head/lady.png
|
|
||||||
user.default.boy=/static/common/image/head/boy.png
|
|
||||||
user.default.girl=/static/common/image/head/girl.png
|
|
||||||
user.default.sir=/static/common/image/head/sir.png
|
|
||||||
user.default.headPic=/static/common/image/head/girl.png
|
|
||||||
loginLimit.level1.count=5
|
|
||||||
loginLimit.level1.interval=300
|
|
||||||
loginLimit.level2.count=10
|
|
||||||
loginLimit.level2.interval=300
|
|
||||||
loginLimit.level2.denyInterval=600
|
|
||||||
|
|
||||||
spring.messages.basename=i18n.messages
|
|
||||||
spring.messages.encoding=utf-8
|
|
||||||
|
|
||||||
## Redis ??====================================
|
|
||||||
## Redis?????????0?
|
|
||||||
spring.redis.database=0
|
|
||||||
## Redis?????
|
|
||||||
spring.redis.host=redis
|
|
||||||
|
|
||||||
spring.redis.port=6379
|
|
||||||
## Redis?????????????
|
|
||||||
spring.redis.password=
|
|
||||||
## ????????????????????
|
|
||||||
spring.redis.jedis.pool.max-active=200
|
|
||||||
## ???????????????????????
|
|
||||||
spring.redis.jedis.pool.max-wait=-1
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.max-idle=200
|
|
||||||
## ???????????
|
|
||||||
spring.redis.jedis.pool.min-idle=0
|
|
||||||
## ??????????
|
|
||||||
spring.redis.timeout=300
|
|
||||||
|
|
||||||
#buildkey
|
|
||||||
m3u8.buildkey=buildkey
|
|
||||||
m3u8.buildkey2=buildkey2
|
|
||||||
schedule.video_convert_time=0 0/30 * * * ?
|
|
||||||
|
|
||||||
verification.expiried=5
|
|
||||||
|
|
||||||
|
|
||||||
h5doc.apiUrl=http://p2.ebh.net/i2.aspx?from=wuji
|
|
||||||
h5doc.appId=ebhapp1008
|
|
||||||
h5doc.appKey=89327008
|
|
||||||
swfdoc.apiUrl=http://p1.ebh.net/i.aspx?from=wuji
|
|
||||||
swfdoc.appId=ebhapp1005
|
|
||||||
swfdoc.appKey=89327005
|
|
||||||
swfdoc.callback.ipWhiteList=101.71.142.135
|
|
||||||
|
|
||||||
|
|
||||||
spring.mail.host=smtp.qq.com
|
|
||||||
spring.mail.username=system@wxbig.cn
|
|
||||||
#\u6388\u6743\u7801g\uFF0C\u5728QQ\u90AE\u7BB1\u5BA2\u6237\u7AEF\u751F\u6210 \u4FEE\u6539\u6210\u81EA\u5DF1\u7684 \u8BBE\u7F6E-\u8D26\u6237-\u5F00\u542F\u670D\u52A1-\u83B7\u53D6\u6388\u6743\u7801
|
|
||||||
spring.mail.password=ENC(AvNBF7xFcdy8792rgQOD2Ad0VhtF7ojqYrI2VJofsHs=)
|
|
||||||
spring.mail.properties.mail.smtp.auth=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.enable=true
|
|
||||||
spring.mail.properties.mail.smtp.starttls.required=true
|
|
||||||
|
|
||||||
|
|
||||||
# Max file size??10M
|
|
||||||
spring.servlet.multipart.max-file-size=10485760
|
|
||||||
# Max request size??10M
|
|
||||||
spring.servlet.multipart.max-request-size=10485760
|
|
||||||
|
|
||||||
|
|
||||||
ppt.des.key=
|
|
||||||
ppt.des.vi=
|
|
||||||
ppt.server.url=https://demo.filesbox.cn/plugin/wo365/
|
|
||||||
ppt.replace.need=0
|
|
||||||
ppt.ip.whitelist=
|
|
||||||
cdn.domain=pufay-cdn.filesbox.cn
|
|
||||||
|
|
||||||
mail.encode.fail = 414667543@qq.com
|
|
||||||
environment.type=pufay
|
|
||||||
disk.default.size=1024
|
|
||||||
|
|
||||||
dingding.token=IHQCLrVBXNzB179pwdarwG
|
|
||||||
dingding.aes.key=B1Jsb68yUw4PzOQZbugNAGo8DbAJuWhRbvlKUAH7QUV
|
|
||||||
dingding.app.key=dingyw0a2j25u6cjqifl
|
|
||||||
dingding.app.secret=lZdcpljJWmtFK1DqhEtVftYuqLfNeKUfTJeFfPhtvgRHWvzAw5tUyRuIvzFe4hlH
|
|
||||||
|
|
||||||
yz.view.convert.url=https://demo.filesbox.cn/fcscloud/composite/httpfile
|
|
||||||
yz.edit.convert.url=https://demo.filesbox.cn/plugin/yzwo
|
|
||||||
yz.edit.post.url=https://demo.filesbox.cn/plugin/yzwo/api.do
|
|
||||||
yz.fileId.prefix=o_
|
|
||||||
|
|
||||||
schedule.deleteCloudDownload=0 0 1 * * ?
|
|
||||||
webdav.host=https://my.pufay.cn
|
|
||||||
|
|
||||||
|
|
||||||
enWechat.corpId=ww2d1e9bafb529c21f
|
|
||||||
enWechat.AgentId=100008
|
|
||||||
enWechat.Secret=Vy2WaVIblMP57pjmpon_bVGTqmbU2ls7STAgWXSPvak
|
|
||||||
|
|
||||||
wechat.web.wx_appid=wxeed6a7666ad6b030
|
|
||||||
wechat.web.wx_appSecret=3a2d4d810360ac367c3fe64d73af2e0f
|
|
||||||
wechat.app.wx_appid=wx283aec18f2335a85
|
|
||||||
wechat.app.wx_appSecret=b10e94cd00d0aeb6c67fdb5c43449423
|
|
||||||
|
|
||||||
mybatis-plus.mapper-locations=classpath*:mapper/*.xml
|
|
||||||
info.common.htmlPath.name=pufay
|
|
||||||
|
|
||||||
#libreoffice\u914D\u7F6E\u4FE1\u606F
|
|
||||||
office.libreOfficeVersion=libreoffice6.3
|
|
||||||
office.shellFileName=docx.sh
|
|
||||||
office.shellFileDirectory=/
|
|
||||||
design.subPage.limitCount=512
|
|
||||||
schedule.msgWarning=*/20 * * * * ?
|
|
||||||
|
|
||||||
#\u626B\u7801\u767B\u5F55\u4E8C\u7EF4\u7801\u6709\u6548\u671F\u3002\u5355\u4F4D\uFF1A\u5206\u949F
|
|
||||||
scan.login.code.expire=3
|
|
||||||
|
|
||||||
webdav.rootContext[0]=/webdav/private/
|
|
||||||
webdav.rootContext[1]=/webdav/favor/
|
|
||||||
# Whether to print exception stacktrace in the response.
|
|
||||||
webdav.showExceptions=true
|
|
||||||
# Here you map you filesystem folder to be root for WebDAV. If not provided default structure will be created for the testing.
|
|
||||||
webdav.rootFolder=/
|
|
||||||
# WebSockets are available at this endpoint. WebSockets are used in the default GET page.
|
|
||||||
webdav.rootWebSocket=/
|
|
||||||
jasypt.encryptor.bean=encryptorBean
|
|
Loading…
Reference in New Issue
Block a user