I have this configuration setting on my /opt/lampp/etc/httpd.conf
<VirtualHost *:902>
DocumentRoot "/opt/lampp/htdocs/e-wallet-frontend/public"
ServerName localhost
</VirtualHost>
Listen 902
and my Laravel Project placed in my /opt/lampp/htdocs/e-wallet-frontend
I already installed my composer
and laravel
on the server all the dependencies are downloaded already.
If I try to navigate the project manually without using port
something like this
http://mypublicip/e-wallet-frontend/public/index.php
the project appears but of course lot of errors.
But whenever I try to navigate the project something like this
http://mypublicip:902/login
since laravel performs the route.
The browser always gives this response, too long to respond
This configuration is working on my local. But when I try to use it on AWS
It doesn't work anymore. Is there anything I need to configure to solve this problem?
UPDATE
using sudo curl -vv http://mypublicip:902/login
Ubuntu 18.04
0 Answers