You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
630 B

10 months ago
# true 值支持热加载
10 months ago
undertow.devMode=false
10 months ago
undertow.port=8000
undertow.host=0.0.0.0
# 目录名称
10 months ago
undertow.contextPath=/
10 months ago
# 设定I/O线程数.
server.undertow.io-threads=8
# 设定工作线程数
server.undertow.worker-threads=60
# gzip 压缩开关
undertow.gzip.enable=true
# 配置压缩级别,默认值 -1。 可配置 1 到 9。 1 拥有最快压缩速度9 拥有最高压缩率
undertow.gzip.level=-1
# 触发压缩的最小内容长度
undertow.gzip.minLength=1024
# 开启access日志
10 months ago
server.undertow.accesslog.enabled=false
10 months ago
server.undertow.accesslog.pattern=%t %a "%r" %s (%D ms)