How to make visible folder on the web?

Discussion in 'Server Operation' started by lano, Oct 6, 2007.

  1. lano

    lano Member

    I have a client with site www.domain.tld which is located in /var/www/web4/web
    This client wants to have folder /files (http://www.domain.tld/files) visible to everyone on the web. How to do that? Chmod/chown? Mods to Apache2? Site is hosting Joomla. I'm running Ispconfig.

    Thanks
     
  2. falko

    falko Super Moderator ISPConfig Developer

    Put this into the vhost configuration of that web site:
    Code:
    <Directory /var/www/web4/web/files>
      Options +Indexes
    </Directory>
    Restart Apache afterwards.
     
  3. lano

    lano Member

    It is working.
    Again, thanks a lot!
     

Share This Page