Skip to content

Commit 79d916d

Browse files
jplhomeradamwathan
authored andcommitted
Filter out .conf files when creating secure URL list
1 parent 3aac3e2 commit 79d916d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/Valet/Site.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ function secured()
168168
{
169169
return collect($this->files->scandir($this->certificatesPath()))
170170
->map(function ($file) {
171-
return str_replace(['.key', '.csr', '.crt'], '', $file);
171+
return str_replace(['.key', '.csr', '.crt', '.conf'], '', $file);
172172
})->unique()->values()->all();
173173
}
174174

0 commit comments

Comments
 (0)