powdahound / s3browser
- Source
- Commits
- Network (0)
- Issues (2)
- Downloads (0)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Mar 04 20:21:38 -0800 2010 | |
| |
.htaccess | Thu Mar 04 20:46:24 -0800 2010 | |
| |
README.md | Thu Mar 04 20:46:24 -0800 2010 | |
| |
config-sample.php | Mon Sep 15 07:59:21 -0700 2008 | |
| |
include/ | Thu Mar 04 22:36:49 -0800 2010 | |
| |
index.php | Thu Mar 04 22:36:49 -0800 2010 | |
| |
libs/ | Sun May 03 16:28:58 -0700 2009 | |
| |
themes/ | Thu Mar 04 22:36:49 -0800 2010 |
README.md
Amazon S3 Directory Browser
Please report any issues here on GitHub.
Installation
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 git@github.com:powdahound/s3browser.gitTweak config to your liking. Each option is documented in the config file.
cp config-sample.php config.php vim config.phpAdd an Apache VirtualHost for your new subdomain. e.g.:
<VirtualHost *:80> ServerName s3browser.example.com DocumentRoot /srv/www/s3browser RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . /index.php [L] </VirtualHost>Reload your Apache config:
sudo /etc/init.d/apache2 reload