使用不同的端口将站点添加到 apache2

使用不同的端口将站点添加到 apache2

我接手了旧服务器的管理。似乎有一个配置为端口 80 的内部网站。在该服务器中似乎还安装了 vtiger 版本 5.4italian。我想将 vtiger 网站发布到端口 90 并试用一下。起始页面应该是:/var/www/vtigercrm504ita/index.php 您能否为我提供一份指南,告诉我需要编辑哪些文件?这个页面https://httpd.apache.org/docs/2.4/vhosts/examples.html没有告诉我需要编辑哪些文件。我试过:

     nano /etc/apache2/sites-available/vtiger.conf

    Listen 90

<VirtualHost *:90>

        ServerName localhost

        <Directory /var/www/vtigercrm504ita>
                AllowOverride None
                Require all granted
        </Directory>

        DocumentRoot /var/www/vtigercrm504ita

        ErrorLog ${APACHE_LOG_DIR}/vtiger.error.log
        CustomLog ${APACHE_LOG_DIR}/vtiger.access.log combined

</VirtualHost>

但如果我转到 ip:90,我会得到 ERR_CONNECTION_REFUSED,而不是页面 /var/www/vtigercrm504ita/index.php

相关内容