]> git.mxchange.org Git - simple-upload.git/blobdiff - README.md
Update README.md
[simple-upload.git] / README.md
index 93885d30e7709aa9c9699bbb9ae8f308fcfa2485..a353cf431bc6de80f5bf3f263ea30201bc580c45 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 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
 
@@ -81,6 +81,8 @@ Do not allow uploaded code execution!
 
 ### NGINX configuration example
 
+Edit the NGINX configuration file (`/etc/nginx/nginx.conf`):
+
        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
+       }