summaryrefslogtreecommitdiff
path: root/caddytest
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2020-11-02 17:11:17 -0500
committerGitHub <noreply@github.com>2020-11-02 15:11:17 -0700
commiteda9a1b377effed349f2e818a3ce71c3c8df6173 (patch)
treed4308305780a5f8aa7b94c6340d19d473c9e1983 /caddytest
parent860cc6adfe6a5022baf5fd387e0d10c5e3a174fe (diff)
fastcgi: Add timeouts support to Caddyfile adapter (#3842)
* fastcgi: Add timeouts support to Caddyfile adapter * fastcgi: Use tabs instead of spaces
Diffstat (limited to 'caddytest')
-rw-r--r--caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt26
1 files changed, 16 insertions, 10 deletions
diff --git a/caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt b/caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt
index 6d939b4..5ebdbd2 100644
--- a/caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt
+++ b/caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt
@@ -1,15 +1,18 @@
:8884
php_fastcgi localhost:9000 {
- # some php_fastcgi-specific subdirectives
- split .php .php5
- env VAR1 value1
- env VAR2 value2
- root /var/www
- index off
+ # some php_fastcgi-specific subdirectives
+ split .php .php5
+ env VAR1 value1
+ env VAR2 value2
+ root /var/www
+ index off
+ dial_timeout 3s
+ read_timeout 10s
+ write_timeout 20s
- # passed through to reverse_proxy (directive order doesn't matter!)
- lb_policy random
+ # passed through to reverse_proxy (directive order doesn't matter!)
+ lb_policy random
}
----------
{
@@ -39,16 +42,19 @@ php_fastcgi localhost:9000 {
}
},
"transport": {
+ "dial_timeout": 3000000000,
"env": {
"VAR1": "value1",
"VAR2": "value2"
},
"protocol": "fastcgi",
+ "read_timeout": 10000000000,
"root": "/var/www",
"split_path": [
".php",
".php5"
- ]
+ ],
+ "write_timeout": 20000000000
},
"upstreams": [
{
@@ -63,4 +69,4 @@ php_fastcgi localhost:9000 {
}
}
}
-} \ No newline at end of file
+}