Loading config/autoload/unicaen-vue.global.php +9 −1 Original line number Diff line number Diff line <?php $hostUrl = ($_ENV['REQUEST_SCHEME'] ?? 'http').'://'.($_ENV['APP_HOST'] ?? 'localhost').':'.($_ENV['APP_VITE_PORT'] ?? 5133); $hostUrl = $_ENV['DEV_VITE_URL'] ?? null; if (!$hostUrl) { $scheme = $_ENV['HTTP_X_FORWARDED_PROTO'] ?? $_ENV['REQUEST_SCHEME'] ?? 'http'; $host = $_ENV['APP_HOST'] ?: 'localhost'; $port = $_ENV['DEV_VITE_PORT'] ?: 5133; $hostUrl = $scheme . '://' . $host . ':' . $port; } return [ 'unicaen-vue' => [ Loading Loading
config/autoload/unicaen-vue.global.php +9 −1 Original line number Diff line number Diff line <?php $hostUrl = ($_ENV['REQUEST_SCHEME'] ?? 'http').'://'.($_ENV['APP_HOST'] ?? 'localhost').':'.($_ENV['APP_VITE_PORT'] ?? 5133); $hostUrl = $_ENV['DEV_VITE_URL'] ?? null; if (!$hostUrl) { $scheme = $_ENV['HTTP_X_FORWARDED_PROTO'] ?? $_ENV['REQUEST_SCHEME'] ?? 'http'; $host = $_ENV['APP_HOST'] ?: 'localhost'; $port = $_ENV['DEV_VITE_PORT'] ?: 5133; $hostUrl = $scheme . '://' . $host . ':' . $port; } return [ 'unicaen-vue' => [ Loading