forked from web-tunnel/lite-http-tunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 848 Bytes
/
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
{
"name": "Lite HTTP Tunnel Server",
"description": "A lite http tunnel server to expose a local server behind a NAT or firewall to the internet",
"repository": "https://github.com/embbnux/lite-http-tunnel",
"keywords": ["node", "http-tunnel", "tunnel"],
"env": {
"NODE_ENV": {
"description": "NODE_ENV",
"value": "production"
},
"SECRET_KEY": {
"description": "A secret key for generating and verifying jwt token.",
"generator": "secret"
},
"VERIFY_TOKEN": {
"description": "A secret key for generating jwt token.",
"generator": "secret"
},
"JWT_GENERATOR_USERNAME": {
"description": "username to access JWT generator"
},
"JWT_GENERATOR_PASSWORD": {
"description": "password to access JWT generator, remove this env after you get jwt token"
}
}
}