summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/global_server_options_single.txt
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/global_server_options_single.txt')
-rw-r--r--caddytest/integration/caddyfile_adapt/global_server_options_single.txt62
1 files changed, 62 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/global_server_options_single.txt b/caddytest/integration/caddyfile_adapt/global_server_options_single.txt
new file mode 100644
index 0000000..5a5c64c
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/global_server_options_single.txt
@@ -0,0 +1,62 @@
+{
+ servers {
+ listener_wrappers {
+ tls
+ }
+ timeouts {
+ read_body 30s
+ read_header 30s
+ write 30s
+ idle 30s
+ }
+ max_header_size 100MB
+ protocol {
+ allow_h2c
+ experimental_http3
+ strict_sni_host
+ }
+ }
+}
+
+foo.com {
+}
+
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":443"
+ ],
+ "listener_wrappers": [
+ {
+ "wrapper": "tls"
+ }
+ ],
+ "read_timeout": 30000000000,
+ "read_header_timeout": 30000000000,
+ "write_timeout": 30000000000,
+ "idle_timeout": 30000000000,
+ "max_header_bytes": 100000000,
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "foo.com"
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ],
+ "strict_sni_host": true,
+ "experimental_http3": true,
+ "allow_h2c": true
+ }
+ }
+ }
+ }
+} \ No newline at end of file