-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfly.toml.example
64 lines (56 loc) · 1.77 KB
/
fly.toml.example
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
# fly.toml app configuration file generated for exposesh on 2024-05-15T17:03:59+02:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'exposesh'
primary_region = 'cdg'
[build]
[env]
FLYDOTIO_APP_NAME = 'exposesh'
CONFIG_DIRECTORY = '/expose.sh/sshserver'
UNIX_SOCKETS_DIRECTORY = '/expose.sh/sshserver/sockets/'
HTTP_URL = 'expos.es'
SSH_SERVER_HOST = '0.0.0.0'
SSH_SERVER_PORT = '2222'
SSH_SERVER_URL = 'expose.sh'
NODEJS_TOOLS_PORT = '3000'
RATE_LIMIT_COUNT = '5'
RATE_LIMIT_INTERVAL = '60'
TIMEOUT = '15'
MAX_FREE_CONCURRENT_CONNECTIONS = '2'
CHECK_IF_TUNNEL_EXISTS = 'http://localhost:3000/checkIfTunnelExists'
BANNER_URL = 'http://localhost:3000/getBanner'
CACHE_ADD_URL = 'http://localhost:3000/addToNginxCache'
CACHE_REMOVE_URL = 'http://localhost:3000/removeFromNginxCache'
GENERATE_QRCODE_URL = 'http://localhost:3000/generateQRCode'
GET_ALL_INSTANCES_IPV6_URL = 'http://localhost:3000/getAllInstancesIPv6'
KEY_MATCHES_ACCOUNT_URL = 'http://localhost:3000/keyMatchesAccount'
IS_USER_SPONSOR_URL = 'http://localhost:3000/isUserSponsor'
WELCOME_BANNER_URL = ''
FREE_BANNER_URL = ''
PAID_BANNER_URL = ''
TROUBLE_BANNER_URL = ''
UNRECOGNISED_USER_BANNER_URL = ''
VERIFY_GITHUB_USER_AND_FETCH_SSH_KEYS_URL = ''
LOG_DEPTH = '2'
LOG_LEVEL = 'INFO'
[http_service]
internal_port = 80
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[services]]
protocol = 'tcp'
internal_port = 2222
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
[[services.ports]]
port = 22
[[services.tcp_checks]]
interval = '15s'
timeout = '2s'
grace_period = '1s'
[[vm]]
size = 'shared-cpu-1x'