-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fastcgi: Move adapt tests to separate files
- Loading branch information
1 parent
9480400
commit 89de0fc
Showing
3 changed files
with
184 additions
and
190 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
:8884 | ||
|
||
php_fastcgi localhost:9000 { | ||
# some php_fastcgi-specific subdirectives | ||
split .php .php5 | ||
env VAR1 value1 | ||
env VAR2 value2 | ||
root /var/www | ||
index off | ||
|
||
# passed through to reverse_proxy (directive order doesn't matter!) | ||
lb_policy random | ||
} | ||
---------- | ||
{ | ||
"apps": { | ||
"http": { | ||
"servers": { | ||
"srv0": { | ||
"listen": [ | ||
":8884" | ||
], | ||
"routes": [ | ||
{ | ||
"match": [ | ||
{ | ||
"path": [ | ||
"*.php", | ||
"*.php5" | ||
] | ||
} | ||
], | ||
"handle": [ | ||
{ | ||
"handler": "reverse_proxy", | ||
"load_balancing": { | ||
"selection_policy": { | ||
"policy": "random" | ||
} | ||
}, | ||
"transport": { | ||
"env": { | ||
"VAR1": "value1", | ||
"VAR2": "value2" | ||
}, | ||
"protocol": "fastcgi", | ||
"root": "/var/www", | ||
"split_path": [ | ||
".php", | ||
".php5" | ||
] | ||
}, | ||
"upstreams": [ | ||
{ | ||
"dial": "localhost:9000" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
118 changes: 118 additions & 0 deletions
118
caddytest/integration/caddyfile_adapt/php_fastcgi_subdirectives.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
:8884 | ||
|
||
php_fastcgi localhost:9000 { | ||
# some php_fastcgi-specific subdirectives | ||
split .php .php5 | ||
env VAR1 value1 | ||
env VAR2 value2 | ||
root /var/www | ||
index index.php5 | ||
|
||
# passed through to reverse_proxy (directive order doesn't matter!) | ||
lb_policy random | ||
} | ||
---------- | ||
{ | ||
"apps": { | ||
"http": { | ||
"servers": { | ||
"srv0": { | ||
"listen": [ | ||
":8884" | ||
], | ||
"routes": [ | ||
{ | ||
"match": [ | ||
{ | ||
"file": { | ||
"try_files": [ | ||
"{http.request.uri.path}/index.php5" | ||
] | ||
}, | ||
"not": [ | ||
{ | ||
"path": [ | ||
"*/" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"handle": [ | ||
{ | ||
"handler": "static_response", | ||
"headers": { | ||
"Location": [ | ||
"{http.request.uri.path}/" | ||
] | ||
}, | ||
"status_code": 308 | ||
} | ||
] | ||
}, | ||
{ | ||
"match": [ | ||
{ | ||
"file": { | ||
"try_files": [ | ||
"{http.request.uri.path}", | ||
"{http.request.uri.path}/index.php5", | ||
"index.php5" | ||
], | ||
"split_path": [ | ||
".php", | ||
".php5" | ||
] | ||
} | ||
} | ||
], | ||
"handle": [ | ||
{ | ||
"handler": "rewrite", | ||
"uri": "{http.matchers.file.relative}" | ||
} | ||
] | ||
}, | ||
{ | ||
"match": [ | ||
{ | ||
"path": [ | ||
"*.php", | ||
"*.php5" | ||
] | ||
} | ||
], | ||
"handle": [ | ||
{ | ||
"handler": "reverse_proxy", | ||
"load_balancing": { | ||
"selection_policy": { | ||
"policy": "random" | ||
} | ||
}, | ||
"transport": { | ||
"env": { | ||
"VAR1": "value1", | ||
"VAR2": "value2" | ||
}, | ||
"protocol": "fastcgi", | ||
"root": "/var/www", | ||
"split_path": [ | ||
".php", | ||
".php5" | ||
] | ||
}, | ||
"upstreams": [ | ||
{ | ||
"dial": "localhost:9000" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters