Add an index page to the root pointing to the bootstrap dir

This commit is contained in:
Nabeel Shahzad
2017-12-17 01:03:19 -06:00
parent b2475720f2
commit 817d3262d4
4 changed files with 36 additions and 5 deletions

22
index.php Executable file
View File

@@ -0,0 +1,22 @@
<?php
/**
* phpVMS
*/
$path_to_phpvms_folder = __DIR__;
require $path_to_phpvms_folder.'/bootstrap/autoload.php';
$app = require_once $path_to_phpvms_folder.'/bootstrap/app.php';
$app->setPublicPath(__DIR__ . '/public');
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);