From 5bf0dfc92eb57f43dcf2eb29d9647c096b984774 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Mon, 28 Aug 2023 14:43:52 +0100 Subject: Revert "Adding echo Request with body Parsing" This reverts commit 011c3ba3f7bc466a04101f81d4f6186001b7aad4. This was committed in error... Signed-off-by: Andrew Clayton --- .../rust/echo-request-wbody/unit-wasm-conf.json | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 examples/rust/echo-request-wbody/unit-wasm-conf.json (limited to 'examples/rust/echo-request-wbody/unit-wasm-conf.json') diff --git a/examples/rust/echo-request-wbody/unit-wasm-conf.json b/examples/rust/echo-request-wbody/unit-wasm-conf.json deleted file mode 100644 index cb799ee..0000000 --- a/examples/rust/echo-request-wbody/unit-wasm-conf.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "listeners": { - "[::1]:8888": { - "pass": "routes" - } - }, - - "settings": { - "http": { - "max_body_size": 1073741824 - } - }, - - "routes": [ - { - "match": { - "uri": "/echo*" - }, - "action": { - "pass": "applications/rust-echo-request" - } - } - ], - - "applications": { - "rust-echo-request": { - "type": "wasm", - "module": "/home/timo/unit1.31/unit-wasm/examples/rust/echo-request-wbody/target/wasm32-wasi/debug/rust_echo_request.wasm", - "request_handler": "uwr_request_handler", - "malloc_handler": "luw_malloc_handler", - "free_handler": "luw_free_handler", - "module_init_handler": "uwr_module_init_handler", - "module_end_handler": "uwr_module_end_handler" - } - } -} -- cgit