0

我已安装 CMS 并使用以下配置

<VirtualHost *:8080>
 ServerAdmin admin@example.com
 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>

我也尝试过不同的配置

<VirtualHost *:80>

我给了 Servername 127.0.0.1, localhost, 0.0.0.0 但它们似乎都无法访问。

任何帮助表示赞赏...谢谢

4

2 回答 2

1

允许端口 80 规则

向实例的安全组添加一条规则,允许 0.0.0.0/0 CIDR 块上的 PORT 80,它应该可以工作。

于 2019-04-09T11:41:28.743 回答
0

我建议检查您的安全组中的端口 80 并简单地运行 curl。

卷曲http://localhost

于 2018-12-24T09:21:09.707 回答