]> git.mxchange.org Git - simple-upload.git/blobdiff - README.md
Added language support and some meta tags.
[simple-upload.git] / README.md
index 93885d30e7709aa9c9699bbb9ae8f308fcfa2485..4e87b68e331521671adda75896a64d2100c951c7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,14 +2,14 @@
 
 Simple single-file PHP file upload (file share hosting) script.
 
-> :warning: **Security warning**: There is no limit on file size or file type. Please make sure that file permissions are set right so nobody can execute uploaded executables. Or exscape your desired directory! Please skip to server configuration for examples.
+> :warning: **Security warning**: There is no limit on file size or file type. Please make sure that file permissions are set right so nobody can execute uploaded code. See [server configuration](#server-configuration) for examples.
 
 ## TODO
 
 - [x] Delete files
 - [x] Private files
 - [x] Sort by age
-- [ ] Auto-remove old files
+- [x] Auto-remove old files
 - [ ] AJAX Uploader
 
 ## Installation
@@ -81,6 +81,8 @@ Do not allow uploaded code execution!
 
 ### NGINX configuration example
 
+Edit the NGINX configuration file (`/etc/nginx/sites-enabled/fileuploader`):
+
        server {
                listen 80 default_server;
                listen [::]:80 default_server ipv6only=on;
@@ -102,4 +104,4 @@ Do not allow uploaded code execution!
                        fastcgi_index index.php;
                        include fastcgi_params;
                }
-       }
\ No newline at end of file
+       }