mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 17:56:34 +08:00
7243454a96
* fastcgi: Add new php_fastcgi subdirectives to override the shortcut * fastcgi: Support "index off" to disable redir and try_files * fastcgi: Remove whitespace to satisfy linter * fastcgi: Run gofmt * fastcgi: Make a new dispenser instead of using rewind * fastcgi: Some fmt * fastcgi: Add a couple adapt tests * fastcgi: Clean up for loops * fastcgi: Move adapt tests to separate files
66 lines
1.1 KiB
Plaintext
66 lines
1.1 KiB
Plaintext
: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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |