Apache2端口更改错误

时间:2013-06-24 20:45:14

标签: ubuntu apache2 port

我有一个工作的apache2服务器。运行没有问题。然后我搬了。

我的新ISP阻止端口80,所以我需要更改它。 出了点问题,我一直在努力工作几个小时没有运气。

正确的知道我只想尝试访问localhost,127.0.0.1。 尝试通过此设置与他们联系返回"无法连接"。

这是我的ports.conf

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
# README.Debian.gz

NameVirtualHost *:8080
Listen 8080


<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

这是我的网站启用/ 000-default

<VirtualHost *:8080>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

我已经运行了sudo service apache2 restart。 我也做了一个sudo服务apache2 reload。 我做过sudo ufw允许8080。

如果我回到80端口,一切都很好。

我启用了mod_security,如果它与它有关。

感谢您的帮助。 乔恩

1 个答案:

答案 0 :(得分:0)

解决。 我有一个新的路由器,这个需要你设置虚拟服务器的设置。 那是不是很有效。

我的ISP甚至没有阻止端口80.一切都与路由器有关。