This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
Bonus-Cloud-Smart-Canteen/scripts_244/system-server.yml

40 lines
820 B
YAML
Raw Normal View History

2025-02-26 13:45:51 +08:00
# Tomcat
server:
port: 48081
# Spring
2025-02-26 10:23:31 +08:00
spring:
2025-02-26 13:45:51 +08:00
servlet:
multipart:
# 文件最大
max-file-size: 20MB
# 设置总上传数据总大小
max-request-size: 20MB
2025-02-26 10:23:31 +08:00
application:
2025-02-26 13:45:51 +08:00
# 应用名称
2025-02-26 10:23:31 +08:00
name: system-server
profiles:
2025-02-26 13:45:51 +08:00
# 环境配置
2025-02-26 10:23:31 +08:00
active: smart_canteen_test
cloud:
nacos:
username: nacos
2025-02-26 13:45:51 +08:00
password: bonus@Admin123
2025-02-26 10:23:31 +08:00
discovery:
2025-02-26 13:45:51 +08:00
# 服务注册地址
server-addr: 192.168.0.244:8848
namespace: smart_canteen
2025-02-26 10:23:31 +08:00
config:
2025-02-26 13:45:51 +08:00
# 配置中心地址
server-addr: 192.168.0.244:8848
namespace: smart_canteen
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
2025-02-26 10:23:31 +08:00