-
Notifications
You must be signed in to change notification settings - Fork 2
/
proxies.json
38 lines (38 loc) · 1.16 KB
/
proxies.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"Root redirect": {
"matchCondition": {
"route": "/"
},
"responseOverrides": {
"response.statusCode": "303",
"response.headers.Location": "https://github.com/LennyToday/RESTful-lenny"
}
},
"Favicon": {
"matchCondition": {
"route": "/favicon.ico"
},
"responseOverrides": {
"response.statusCode": "303",
"response.headers.Location": "http://app.lenny.today/favicon.ico"
}
},
"Robots": {
"matchCondition": {
"route": "/robots.txt"
},
"responseOverrides": {
"response.statusCode": "303",
"response.headers.Location": "http://app.lenny.today/robots.txt"
}
},
"LetsEncrypt": {
"matchCondition": {
"route": "/.well-known/acme-challenge/{rest}"
},
"backendUri": "https://%WEBSITE_HOSTNAME%/api/letsencrypt/{rest}"
}
}
}