feat(server): 增加服务器配置和错误页面处理

增加请求体大小限制至500MB并添加自定义PHP配置
添加404和500错误页面
设置PHP文件上传和错误日志相关参数
This commit is contained in:
2025-07-10 21:33:30 +08:00
parent e417e16539
commit d134df6385
4 changed files with 77 additions and 1 deletions

View File

@@ -1 +1,6 @@
LimitRequestBody 10485760
# 增加请求体大小限制
LimitRequestBody 524288000
# 错误处理
ErrorDocument 500 /error_pages/500.html
ErrorDocument 404 /error_pages/404.html