Skip to content

Commit

Permalink
Fix domain to skip in ui php script
Browse files Browse the repository at this point in the history
  • Loading branch information
cmtickle committed Apr 19, 2023
1 parent c0bff7b commit 55b6ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-stack-ui.loc/pub/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static function supportedProjectsDataSource(): string
$projectBaseDir = '..' . DIRECTORY_SEPARATOR . '..';
$projects = scandir($projectBaseDir);
foreach ($projects as $project) {
if ('docker-stack-ui.localhost' == $project ||
if ('docker-stack-ui.loc' == $project ||
!preg_match('/^.+\.(local|loc|localhost|test)$/', $project)) {
continue;
}
Expand Down

0 comments on commit 55b6ebf

Please sign in to comment.