summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/request_body.txt
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/request_body.txt')
-rw-r--r--caddytest/integration/caddyfile_adapt/request_body.txt45
1 files changed, 45 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/request_body.txt b/caddytest/integration/caddyfile_adapt/request_body.txt
new file mode 100644
index 0000000..458b739
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/request_body.txt
@@ -0,0 +1,45 @@
+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