2020-08-01 01:30:20 +08:00
|
|
|
|
|
|
|
https://example.com {
|
|
|
|
reverse_proxy /path http://localhost:54321 {
|
|
|
|
header_up Host {host}
|
|
|
|
header_up X-Real-IP {remote}
|
|
|
|
header_up X-Forwarded-For {remote}
|
|
|
|
header_up X-Forwarded-Port {server_port}
|
|
|
|
header_up X-Forwarded-Proto "http"
|
2020-10-31 02:05:21 +08:00
|
|
|
|
|
|
|
buffer_requests
|
|
|
|
|
2020-08-01 01:30:20 +08:00
|
|
|
transport http {
|
|
|
|
versions h2c 2
|
|
|
|
compression off
|
2020-10-31 02:05:21 +08:00
|
|
|
max_conns_per_host 5
|
|
|
|
max_idle_conns_per_host 2
|
2020-08-01 01:30:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
----------
|
|
|
|
{
|
|
|
|
"apps": {
|
|
|
|
"http": {
|
|
|
|
"servers": {
|
|
|
|
"srv0": {
|
|
|
|
"listen": [
|
|
|
|
":443"
|
|
|
|
],
|
|
|
|
"routes": [
|
|
|
|
{
|
|
|
|
"match": [
|
|
|
|
{
|
|
|
|
"host": [
|
|
|
|
"example.com"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"handle": [
|
|
|
|
{
|
|
|
|
"handler": "subroute",
|
|
|
|
"routes": [
|
|
|
|
{
|
|
|
|
"handle": [
|
|
|
|
{
|
2020-09-09 00:37:46 +08:00
|
|
|
"buffer_requests": true,
|
2020-08-01 01:30:20 +08:00
|
|
|
"handler": "reverse_proxy",
|
|
|
|
"headers": {
|
|
|
|
"request": {
|
|
|
|
"set": {
|
|
|
|
"Host": [
|
|
|
|
"{http.request.host}"
|
|
|
|
],
|
|
|
|
"X-Forwarded-For": [
|
|
|
|
"{http.request.remote}"
|
|
|
|
],
|
|
|
|
"X-Forwarded-Port": [
|
|
|
|
"{server_port}"
|
|
|
|
],
|
|
|
|
"X-Forwarded-Proto": [
|
|
|
|
"http"
|
|
|
|
],
|
|
|
|
"X-Real-Ip": [
|
|
|
|
"{http.request.remote}"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"transport": {
|
|
|
|
"compression": false,
|
2020-10-31 02:05:21 +08:00
|
|
|
"max_conns_per_host": 5,
|
|
|
|
"max_idle_conns_per_host": 2,
|
2020-08-01 01:30:20 +08:00
|
|
|
"protocol": "http",
|
|
|
|
"versions": [
|
|
|
|
"h2c",
|
|
|
|
"2"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"upstreams": [
|
|
|
|
{
|
|
|
|
"dial": "localhost:54321"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"match": [
|
|
|
|
{
|
|
|
|
"path": [
|
|
|
|
"/path"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"terminal": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|