-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
41 lines (41 loc) · 1.21 KB
/
app.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
39
40
41
{
"name": "Heroku http proxy-pass",
"description": "proxy https => https",
"keywords": [
"proxy"
],
"website": "https://github.com/best-tech/heroku-proxy-pass",
"repository": "https://github.com/best-tech/heroku-proxy-pass",
"env": {
"PROXY_PASS": {
"description": "Путь перенаправления",
"value": "https://aviasales.ru/?marker=18479",
"required": true
},
"AUTH_HAEDER": {
"description": "Заголовок авторизации, например: Basic dGVzdHN0cmluZw== для проброса серверу",
"value": "",
"required": false
},
"AUTH_MAIN": {
"description": "Заголовок авторизации к текущему серверу",
"value": "",
"required": false
},
"URL_PATH": {
"description": "Значение Location",
"value": "/",
"required": true
},
"HEADER_HOST": {
"description": "Заголовок Host",
"value": "aviasales.ru",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nginx"
}
]
}