Skip to content

Commit c49283b

Browse files
authored
Update tunneler.php
1 parent 4945e89 commit c49283b

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

config/tunneler.php

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,28 @@
11
<?php
22
return [
3+
4+
'verify_process' => env('TUNNELER_VERIFY_PROCESS', 'nc'),
5+
36
'nc_path' => env('TUNNELER_NC_PATH', 'nc'),
7+
'bash_path' => env('TUNNELER_BASH_PATH', 'bash'),
48
'ssh_path' => env('TUNNELER_SSH_PATH', 'ssh'),
59
'nohup_path' => env('TUNNELER_NOHUP_PATH', 'nohup'),
6-
10+
711
'local_address' => env('TUNNELER_LOCAL_ADDRESS', '127.0.0.1'),
812
'local_port' => env('TUNNELER_LOCAL_PORT'),
913
'identity_file' => env('TUNNELER_IDENTITY_FILE'),
10-
14+
1115
'bind_address' => env('TUNNELER_BIND_ADDRESS', '127.0.0.1'),
1216
'bind_port' => env('TUNNELER_BIND_PORT'),
13-
17+
1418
'user' => env('TUNNELER_USER'),
1519
'hostname' => env('TUNNELER_HOSTNAME'),
1620
'port' => env('TUNNELER_PORT'),
1721
'wait' => env('TUNNELER_CONN_WAIT', '500000'),
18-
19-
'on_boot' => filter_var(env('TUNNELER_ON_BOOT', false), FILTER_VALIDATE_BOOLEAN)
20-
];
22+
23+
'on_boot' => filter_var(env('TUNNELER_ON_BOOT', false), FILTER_VALIDATE_BOOLEAN),
24+
'ssh_verbosity' => env('SSH_VERBOSITY',''),
25+
'ssh_options' => env('TUNNELER_SSH_OPTIONS', ''),
26+
'nohup_log' => env('NOHUP_LOG', '/dev/null'),
27+
28+
];

0 commit comments

Comments
 (0)