summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt')
-rw-r--r--caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt80
1 files changed, 80 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt b/caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt
new file mode 100644
index 0000000..a6fd051
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/log_except_catchall_blocks.txt
@@ -0,0 +1,80 @@
+http://localhost:2020 {
+ log
+ file_server
+}
+
+:2020 {
+ respond 418
+}
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":2020"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "localhost"
+ ]
+ }
+ ],
+ "handle": [
+ {
+ "handler": "subroute",
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "file_server",
+ "hide": [
+ "./Caddyfile"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "terminal": true
+ },
+ {
+ "handle": [
+ {
+ "handler": "subroute",
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "status_code": 418
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ],
+ "automatic_https": {
+ "skip": [
+ "localhost"
+ ]
+ },
+ "logs": {
+ "logger_names": {
+ "localhost:2020": ""
+ },
+ "skip_unmapped_hosts": true
+ }
+ }
+ }
+ }
+ }
+} \ No newline at end of file