0

I have inherited the management of an old server. It seems that there is an intranet site configured to the port 80. In that server it seems that there is also installed vtiger version 5.4italian I would like to publish vtiger site to the port 90 an try it out. the beginning page should be: /var/www/vtigercrm504ita/index.php Can you point me to a guide that tells me what files do i need to edit? this page https://httpd.apache.org/docs/2.4/vhosts/examples.html is not telling what files do I need to edit. i tried:

     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>

but if I go to ip:90 i get ERR_CONNECTION_REFUSED instead of the page /var/www/vtigercrm504ita/index.php

Malkavian
  • 109
  • 2
  • 3
  • 14
  • 1
    Possible duplicate of [Change phpMyAdmin port from 80 to another number](https://askubuntu.com/questions/896988/change-phpmyadmin-port-from-80-to-another-number) – pa4080 Sep 09 '19 at 07:24
  • Note IP and localhost (your ServerName) are two different things. Have you tried with `http://localhost:90` from the same machine? Please keep in mind you need to restart Apache (or reload its configuration) to apply the changes. – pa4080 Sep 09 '19 at 10:51

0 Answers0