You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -315,12 +315,12 @@ public static class Tomcat {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ content into your application. Rather, pick only the properties that you need.
74
74
# SPRING CACHE ({sc-spring-boot-autoconfigure}/cache/CacheProperties.{sc-ext}[CacheProperties])
75
75
spring.cache.cache-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.
76
76
spring.cache.caffeine.spec= # The spec to use to create caches. See CaffeineSpec for more details on the spec format.
77
-
spring.cache.couchbase.expiration=0ms # Entry expiration. By default the entries never expire. Note that this value is ultimately converted to seconds.
77
+
spring.cache.couchbase.expiration= # Entry expiration. By default the entries never expire. Note that this value is ultimately converted to seconds.
78
78
spring.cache.ehcache.config= # The location of the configuration file to use to initialize EhCache.
79
79
spring.cache.infinispan.config= # The location of the configuration file to use to initialize Infinispan.
80
80
spring.cache.jcache.config= # The location of the configuration file to use to initialize the cache manager.
@@ -253,16 +253,18 @@ content into your application. Rather, pick only the properties that you need.
253
253
server.tomcat.accesslog.rotate=true # Whether to enable access log rotation.
254
254
server.tomcat.accesslog.suffix=.log # Log file name suffix.
255
255
server.tomcat.additional-tld-skip-patterns= # Comma-separated list of additional patterns that match jars to ignore for TLD scanning.
256
-
server.tomcat.background-processor-delay=10 # Delay in seconds between the invocation of backgroundProcess methods.
256
+
server.tomcat.background-processor-delay=10s # Delay between the invocation of backgroundProcess methods. If a duration suffix is not specified, seconds will be used.
257
257
server.tomcat.basedir= # Tomcat base directory. If not specified, a temporary directory is used.
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # Regular expression matching trusted IP addresses.
265
-
server.tomcat.max-connections=10000 # Maximum number of connections that the server will accept and process at any given time.
264
+
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
265
+
0:0:0:0:0:0:0:1\\
266
+
::1 # Regular expression that matches proxies that are to be trusted.
267
+
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time
266
268
server.tomcat.max-http-post-size=2MB # Maximum size of the HTTP post content.
267
269
server.tomcat.max-swallow-size=2MB # Maximum amount of request body to swallow.
268
270
server.tomcat.max-threads=200 # Maximum amount of worker threads.
@@ -283,7 +285,7 @@ content into your application. Rather, pick only the properties that you need.
283
285
server.undertow.accesslog.rotate=true # Whether to enable access log rotation.
284
286
server.undertow.accesslog.suffix=log # Log file name suffix.
285
287
server.undertow.buffer-size= # Size of each buffer.
286
-
server.undertow.direct-buffers= # Allocate buffers outside the Java heap. The default is derived from the maximum amount of memory that is available to the JVM.
288
+
server.undertow.direct-buffers= # Whether to allocate buffers outside the Java heap. The default is derived from the maximum amount of memory that is available to the JVM.
287
289
server.undertow.eager-filter-init=true # Whether servlet filters should be initialized on startup.
288
290
server.undertow.io-threads= # Number of I/O threads to create for the worker. The default is derived from the number of available processors.
289
291
server.undertow.max-http-post-size=-1B # Maximum size of the HTTP post content. When the value is -1, the default, the size is unlimited.
0 commit comments