无法在 Ubuntu 之外访问 Apache 网络服务器

无法在 Ubuntu 之外访问 Apache 网络服务器

我想在 Ubuntu 之外访问我的网站,但是不行,我可以在 عbuntu 内部访问网站,一切正常,我执行了这个命令

sudo netstat -taupen | grep LISTEN

我有这个结果

tcp        0      0 127.0.1.1:53            0.0.0.0:*               LISTEN      0          17400       1012/dnsmasq
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          29406       936/sshd
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      123        19686       942/mysqld
tcp6       0      0 :::22                   :::*                    LISTEN      0          29408       936/sshd
tcp6       0      0 :::80                   :::*                    LISTEN      0          66907       6103/apache2

这是 apache2.conf 文件的一些内容

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Require all denied
</Directory>
<Directory /usr/share>
    AllowOverride None
    Require all granted
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

相关内容