Reputation: 11
I have installed CMS and using the following configuration
<VirtualHost *:8080>
ServerAdmin [email protected]
DocumentRoot /var/www/html/chamilo
ServerName 127.0.0.1
<Directory /var/www/html/chamilo/>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
I have also tried different configurations
<VirtualHost *:80>
I have given Servername 127.0.0.1, localhost, 0.0.0.0 but none of them seems accessible.
Any help is appreciated... Thanks
Upvotes: 0
Views: 71
Reputation: 11
Add a rule to the security group of the instance allowing PORT 80 on 0.0.0.0/0 CIDR Block and it should work.
Upvotes: 1
Reputation: 340
I would suggest reviewing port 80 in your security groups and simply running curl.
curl http://localhost
Upvotes: 0