Airtime latest! can I use port 88? I have lots of sites under /var/www
  • As I have loads of sites already on /var/www, I need a way of setting up airtime without disabling my current sites.

    Just a thought maybe a way round this is to use another port?

    I tried this but I can't get it to work so maybe there is another work around?
  • 2 Comments sorted by
  • Running airtime here on port 8080 ..
    8080TCPApache TomcatUnofficial
    88 is probably not a good choice as it is already assigned (kerberos),  if anything less than 120 
    would use 80 and 443




  • Vote Up0Vote Down Daniel JamesDaniel James
    Posts: 844Member, Sourcefabric Team
    Hi Geoff, there is no need to use port 88, Airtime uses a virtual host configuration. For example /etc/apache2/sites-available/airtime-vhost.conf might contain first lines like these:

    <VirtualHost *:80>
          ServerName airtime.example.com

          ServerAdmin admin@example.com

          DocumentRoot /usr/share/airtime/public

    So Apache only responds to requests for the ServerName airtime.example.com on port 80 by serving /usr/share/airtime/public - if you are using similar virtual host configurations for your existing sites, they should not be affected by Airtime.

    When using the automated .deb package install, make sure you answer 'No' to the question about disabling the default Apache site if you are using that to point to any production sites. For example, /etc/apache2/sites-available/default or 000-default.

    Cheers!

    Daniel