summaryrefslogtreecommitdiffhomepage
path: root/caddytest/integration/caddyfile_adapt/request_body.caddyfiletest
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/request_body.caddyfiletest')
-rw-r--r--caddytest/integration/caddyfile_adapt/request_body.caddyfiletest46
1 files changed, 46 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/request_body.caddyfiletest b/caddytest/integration/caddyfile_adapt/request_body.caddyfiletest
new file mode 100644
index 000000000..1e4fd4710
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/request_body.caddyfiletest
@@ -0,0 +1,46 @@
+localhost
+
+request_body {
+ max_size 1MB
+}
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":443"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "localhost"
+ ]
+ }
+ ],
+ "handle": [
+ {
+ "handler": "subroute",
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "request_body",
+ "max_size": 1000000
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ]
+ }
+ }
+ }
+ }
+} \ No newline at end of file