@Sinnbeck although apache2 is running
ubuntu@ip-172-31-88-129:/var/www/html$ sudo systemctl status apache2.service
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2022-10-05 21:44:18 UTC; 5min ago
Docs: https://httpd.apache.org/docs/2.4/
Process: 37732 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
Main PID: 37736 (apache2)
Tasks: 55 (limit: 1143)
Memory: 4.8M
CGroup: /system.slice/apache2.service
├─37736 /usr/sbin/apache2 -k start
├─37737 /usr/sbin/apache2 -k start
└─37738 /usr/sbin/apache2 -k start
here is laravel.conf
<VirtualHost *:80>
ServerName 54.89.67.17
ServerAdmin [email protected]
DocumentRoot /var/www/html/projectname/public
<Directory /var/www/html/projectname> AllowOverride All
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
when i try to run on browser , it show
This site can’t be reached54.89.67.17 took too long to respond.
Try:
Checking the connection
Checking the proxy and the firewall
Running Windows Network Diagnostics
i off firewall and try again , same error,
why?