Commit 2c897385 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Document default values for compression properties

Closes gh-10050
parent fa037610
...@@ -146,8 +146,8 @@ content into your application; rather pick only the properties that you need. ...@@ -146,8 +146,8 @@ content into your application; rather pick only the properties that you need.
server.address= # Network address to which the server should bind to. server.address= # Network address to which the server should bind to.
server.compression.enabled=false # If response compression is enabled. server.compression.enabled=false # If response compression is enabled.
server.compression.excluded-user-agents= # List of user-agents to exclude from compression. server.compression.excluded-user-agents= # List of user-agents to exclude from compression.
server.compression.mime-types= # Comma-separated list of MIME types that should be compressed. For instance `text/html,text/css,application/json` server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript # Comma-separated list of MIME types that should be compressed.
server.compression.min-response-size= # Minimum response size that is required for compression to be performed. For instance 2048 server.compression.min-response-size=2048 # Minimum response size that is required for compression to be performed.
server.connection-timeout= # Time in milliseconds that connectors will wait for another HTTP request before closing the connection. When not set, the connector's container-specific default will be used. Use a value of -1 to indicate no (i.e. infinite) timeout. server.connection-timeout= # Time in milliseconds that connectors will wait for another HTTP request before closing the connection. When not set, the connector's container-specific default will be used. Use a value of -1 to indicate no (i.e. infinite) timeout.
server.context-parameters.*= # Servlet context init parameters. For instance `server.context-parameters.a=alpha` server.context-parameters.*= # Servlet context init parameters. For instance `server.context-parameters.a=alpha`
server.context-path= # Context path of the application. server.context-path= # Context path of the application.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment