Amazon EC2 Beanstalk Lavarel showing code instead of displaying the page

0 votes

First time working with Laravel and Beanstalk. I loaded my code, and the home page said permission denied, when I added /public, it said not found.

After some searching I updated my httpd.config file's DocumentRoot from /var/www/html/ to /var/www/html/timers/public, did a 'sudo service httpd restart' and now it's displaying the following unformatted text in on my EC2 Homepage
(http://craftaxethrowingtimers-env.eu-west-1.elasticbeanstalk.com/)

/ define('LARAVEL_START', microtime(true)); / |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | our application. We just need to utilize it! We'll simply require it | into the script here so that we don't have to worry about manual | loading any of our classes later on. It feels great to relax. | / require DIR.'/../vendor/autoload.php'; / |-------------------------------------------------------------------------- | Turn On The Lights |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let us turn on the lights. | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | / $app = require_once DIR.'/../bootstrap/app.php'; / |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);

Aug 30, 2018 in AWS by bug_seeker
• 15,520 points
629 views

1 answer to this question.

0 votes

If there is permission issue, give the permission to the apache server of your new document root as follow,

sudo chown -R apache:apache /var/www/html/timers/public
answered Aug 30, 2018 by Priyaj
• 58,090 points

Related Questions In AWS

0 votes
1 answer

How can I just increase the size of my root disk on AWS EC2 for use with Elastic Beanstalk?

This can be done using the following ...READ MORE

answered Nov 12, 2018 in AWS by Archana
• 5,640 points
2,923 views
0 votes
1 answer
0 votes
1 answer

Using Shapely on AWS Lambda with Python 3

For some reason, the pip install of ...READ MORE

answered Oct 8, 2018 in AWS by Priyaj
• 58,090 points
2,593 views
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
+1 vote
4 answers

What is the difference between Amazon ECS and Amazon EC2?

EC2 allows you to launch individual instances ...READ MORE

answered Jul 11, 2018 in AWS by Priyaj
• 58,090 points
42,597 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP