fanxw пре 6 година
родитељ
комит
24baf23093
1 измењених фајлова са 14 додато и 0 уклоњено
  1. 14 0
      src/main/resources/bootstrap.yml

+ 14 - 0
src/main/resources/bootstrap.yml

@@ -1,5 +1,6 @@
1 1
 server:
2 2
   port: 9022
3
+  maxHttpHeaderSize: 102400
3 4
   tomcat:
4 5
     uri-encoding: utf-8
5 6
 
@@ -41,3 +42,16 @@ spring:
41 42
         max-wait: -1
42 43
         max-idle: 8
43 44
         min-idle: 0 
45
+  # 静态资源配置
46
+  resources:
47
+    static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
48
+  servlet:
49
+    multipart:
50
+      enabled: true
51
+      max-file-size: 20MB
52
+      max-request-size: 50MB
53
+      location: /home/uploadTmp
54
+
55
+web:
56
+  upload-path: /home/depot/depot-web/apache-tomcat-8.0.53/webapps/ROOT/WEB-INF/classes/static
57
+