Please report any issues here on GitHub.
NOTE: S3 Directory Browser is currently designed to run on its own subdomain. e.g.: http://files.powdahound.com
-
Check out the latest release from GitHub:
cd /srv/www git clone [email protected]:powdahound/s3browser.git
-
Tweak config to your liking. Each option is documented in the config file.
cp config-sample.php config.php vim config.php
-
Add an Apache VirtualHost for your new subdomain. e.g.:
<VirtualHost *:80> ServerName s3browser.example.com DocumentRoot /srv/www/s3browser <Directory /> AllowOverride all Order allow, deny Allow from all </Directory> </VirtualHost>
-
Reload your Apache config:
sudo /etc/init.d/apache2 reload