]> jfr.im git - uguu.git/blobdiff - README.md
I didn't get it right at first
[uguu.git] / README.md
index 17ed57578b82ee8207563106d3311d43913f96db..840f1908192dce2041a713d04d9d3c6d630acfdf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # About
-Temp file sharing application source code, stores files and deletes after X amount of time. Forked from Uguu.se available [here](https://github.com/nokonoko/uguu).
+[Uguu.se](http://uguu.se) source code, stores files and deletes after X amount of time.
 
 # Tested with:
 * Nginx+PHP5-FPM (PHP 5.4) on Debian 7 Wheezy
@@ -9,9 +9,10 @@ Temp file sharing application source code, stores files and deletes after X amou
 
 # Install:
 
-* Deploy base code, for example with `git clone https://github.com/pierre-alain-b/Uguu.git`
+* Deploy base code, for example with `git clone https://github.com/nokonoko/Uguu.git`
 * Modify includes/config.php (copy config.template.php as a starting point) to set up the main options for Uguu.
 * Some file extensions are blocked by default, this can be changed via includes/config.php's CONFIG_BLOCKED_EXTENSIONS value.
+* Copy `rain/template/footer.template.html` as `rain/template/footer.html` and personalize the footer as you wish
 * Execute check.sh regularly with cron to delete old files: `crontab -e` and add `0,15,30,45 * * * * bash /path/to/check.sh` (or adapt if you know how cron works).
 * Make the Uguu/public/files and Uguu/rain/cache directory modifiable by the web server user:
 `chown -R www-data:www-data /path/to/Uguu/public/files` and `chown -R www-data:www-data /path/to/Uguu/rain/cache`
@@ -29,9 +30,12 @@ Temp file sharing application source code, stores files and deletes after X amou
 
         Alias "/files" "/var/www/Uguu/public/files/"
         <Directory /var/www/Uguu/public/files/>
-                AllowOverride None
-                Options -Indexes
-                Require all granted
+                     <Files *>
+            SetHandler default-handler
+          </Files>
+          AllowOverride None
+          Options -Indexes
+          Require all granted
         </Directory>
 
 </VirtualHost>