We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a919ad1 commit 29bc59dCopy full SHA for 29bc59d
app/Jobs/Ookla/RunSpeedtestJob.php
@@ -64,6 +64,7 @@ public function handle(): void
64
'--accept-gdpr',
65
'--format=json',
66
$this->result->server_id ? '--server-id='.$this->result->server_id : null,
67
+ config('speedtest.interface') ? '--interface='.config('speedtest.interface') : null,
68
]);
69
70
$process = new Process($command);
config/speedtest.php
@@ -35,6 +35,8 @@
35
36
'blocked_servers' => env('SPEEDTEST_BLOCKED_SERVERS'),
37
38
+ 'interface' => env('SPEEDTEST_INTERFACE'),
39
+
40
/**
41
* IP filtering settings.
42
*/
0 commit comments