This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
93 lines (79 loc) · 3.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "Wolnosciowiec Webproxy",
"description": "Anonymous HTTP proxy that forwards all requests through the PHP application on server side.",
"repository": "https://github.com/Wolnosciowiec/webproxy",
"logo": "https://avatars0.githubusercontent.com/u/22785395",
"keywords": ["webproxy", "proxy", "https", "http"],
"env": {
"WW_TOKEN": {
"description": "Secret API authorization token that needs to be passed using 'ww-token' header",
"required": true,
"generator": "secret"
},
"WW_ENCRYPTION_KEY": {
"description": "Encryption key for one-time-tokens",
"required": true,
"generator": "secret"
},
"WW_ONE_TIME_TOKEN_LIFE_TIME": {
"description": "One-time-tokens life time",
"required": true,
"value": "+2 minutes"
},
"WW_EXTERNAL_PROXIES": {
"description": "List of external IP providers, leave empty to use this machine IP",
"value": "FreeProxyListProvider,GatherProxyProvider,HideMyNameProvider,ProxyListOrgProvider",
"required": false
},
"WW_FIXTURES": {
"description": "List of response fixing rules",
"value": "FacebookCaptchaTo500",
"required": false
},
"WW_FIXTURES_MAPPING": {
"description": "Mapping for non-standard fixtures (provided by external libraries or files). Json format: Key is fixture name, value is a class name.",
"value": "{\"ExampleFixture\": \"\\\\Wolnosciowiec\\\\CustomFixtures\\\\ExampleFixture\"}",
"required": false
},
"WW_TIMEOUT": {
"description": "Timeout for all connections made by proxy",
"value": "10",
"required": true
},
"WW_CACHE_TTL": {
"description": "Cache life time in seconds",
"value": "360",
"required": true
},
"WW_DEBUG": {
"description": "Debugging mode",
"value": "1",
"required": false
},
"WW_PROCESS_CONTENT": {
"description": "Process the CSS/JS urls in the HTML content",
"value": "1",
"required": false
},
"WW_PRERENDER_URL": {
"description": "Use web browser such as Chromium or PhantomJS to prerender the page",
"value": "http://prerender",
"required": false
},
"WW_PRERENDER_ENABLED": {
"description": "Enable usage of prerenderer",
"value": "1",
"required": false
},
"WW_TOR_PROXIES_VIRTUAL_COUNT": {
"description": "Sum the total count of TOR proxy servers on the list of proxies to use",
"value": "5",
"required": false
},
"WW_TOR_PROXIES": {
"description": "List of TOR proxy servers (regular HTTP proxy servers that uses TOR), comma separated without spaces",
"value": "",
"required": false
}
}
}