如何在ubuntu中更改Apache服务器的端口号

时间:2016-10-05 07:38:09

标签: apache

我想将我的端口号80更改为其他数量的Apache服务器。怎么可能在ubuntu

2 个答案:

答案 0 :(得分:0)

在任何操作系统上更改你的虚拟主机,ubuntu路径就像/ etc / apache2 / apache2 config之类的东西。

#Virtual host for YOURSITE
<VirtualHost *:4343>  
        ServerAdmin john.doe@jd.com
        ServerName webpage.dev #same as in your /etc/hosts file
        DocumentRoot /var/www/yoursite
        DirectoryIndex index.html
        <Directory /var/www/yoursite>
                Options FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>
        ErrorLog /var/log/httpd/yoursite_error.log 
        #CustomLog /var/log/apache2/customLog.log  #for ubuntu
</VirtualHost>

希望这对你有帮助,你应该读一下apache coinfiguration ...

这是一个很棒的链接https://www.digitalocean.com/community/tutorials/how-to-configure-the-apache-web-server-on-an-ubuntu-or-debian-vps

答案 1 :(得分:0)

您可以在/ etc / apache2 / sites-available

中创建虚拟主机配置文件

示例: -

  <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>

。 。

并且您必须更改/etc/apache2/ports.conf上的侦听端口

EX: - 听8080