Skip to content

Commit

Permalink
Update tunneler.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bubba-h57 committed May 1, 2017
1 parent 4945e89 commit c49283b
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions config/tunneler.php
@@ -1,20 +1,28 @@
<?php
return [

'verify_process' => env('TUNNELER_VERIFY_PROCESS', 'nc'),

'nc_path' => env('TUNNELER_NC_PATH', 'nc'),
'bash_path' => env('TUNNELER_BASH_PATH', 'bash'),
'ssh_path' => env('TUNNELER_SSH_PATH', 'ssh'),
'nohup_path' => env('TUNNELER_NOHUP_PATH', 'nohup'),

'local_address' => env('TUNNELER_LOCAL_ADDRESS', '127.0.0.1'),
'local_port' => env('TUNNELER_LOCAL_PORT'),
'identity_file' => env('TUNNELER_IDENTITY_FILE'),

'bind_address' => env('TUNNELER_BIND_ADDRESS', '127.0.0.1'),
'bind_port' => env('TUNNELER_BIND_PORT'),

'user' => env('TUNNELER_USER'),
'hostname' => env('TUNNELER_HOSTNAME'),
'port' => env('TUNNELER_PORT'),
'wait' => env('TUNNELER_CONN_WAIT', '500000'),

'on_boot' => filter_var(env('TUNNELER_ON_BOOT', false), FILTER_VALIDATE_BOOLEAN)
];

'on_boot' => filter_var(env('TUNNELER_ON_BOOT', false), FILTER_VALIDATE_BOOLEAN),
'ssh_verbosity' => env('SSH_VERBOSITY',''),
'ssh_options' => env('TUNNELER_SSH_OPTIONS', ''),
'nohup_log' => env('NOHUP_LOG', '/dev/null'),

];

0 comments on commit c49283b

Please sign in to comment.