From f577201de93bcd1cd6b65233216bc4518fde94d2 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Mon, 24 Jul 2017 15:47:15 -0500 Subject: [PATCH] initial instructions for shared hosting --- public/index_sharedhosting.php | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 public/index_sharedhosting.php diff --git a/public/index_sharedhosting.php b/public/index_sharedhosting.php new file mode 100644 index 00000000..b5d30f61 --- /dev/null +++ b/public/index_sharedhosting.php @@ -0,0 +1,38 @@ +make(Illuminate\Contracts\Http\Kernel::class); + +$response = $kernel->handle( + $request = Illuminate\Http\Request::capture() +); + +$response->send(); + +$kernel->terminate($request, $response);