diff --git a/README.md b/README.md index 617d146..d77cc83 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ Which one you use is ultimately up to you. Either way, I've provided a sample co If you set `enableUserAccounts: true`, people will be able to create accounts on the service to keep track of their uploaded files and create albums to upload stuff to, pretty much like imgur does, but only through the API. Every user account has a token that the user can use to upload stuff through the API. You can find this token on the section called `Change your token` on the administration dashboard, and if it gets leaked or compromised you can renew it by clicking the button titled `Request new token`. +## Cloudflare Support +If you are running lolisafe behind Cloudflare there is support to make the NGINX logs have the users IP instead of Cloudflares IP. You will need to compile NGINX from source with `--with-http_realip_module` as well as uncomment the following line in the NGINX config: `include /path/to/lolisafe/real-ip-from-cf;` + ## Using loli-safe Once the service starts you can start hitting the upload endpoint at `/api/upload` with any file. If you're using the frontend to do so then you are pretty much set, but if using the API to upload make sure the form name is set to `files[]` and the form type to `multipart/form-data`. If the service is running in private mode, dont forget to send a header of type `token: YOUR-CLIENT-TOKEN` to validate the request. diff --git a/nginx-ssl.sample.conf b/nginx-ssl.sample.conf index 2172564..72d0028 100644 --- a/nginx-ssl.sample.conf +++ b/nginx-ssl.sample.conf @@ -21,6 +21,11 @@ server { client_max_body_size 100M; # Change this to the max file size you want to allow + # Uncomment if you are running lolisafe behind CloudFlare. + # This requires NGINX compiled from source with: + # --with-http_realip_module + #include /path/to/lolisafe/real-ip-from-cf; + location / { add_header Access-Control-Allow-Origin *; root /path/to/your/uploads/folder; diff --git a/nginx.sample.conf b/nginx.sample.conf index 71b8855..c702eb2 100644 --- a/nginx.sample.conf +++ b/nginx.sample.conf @@ -10,6 +10,11 @@ server { client_max_body_size 100M; # Change this to the max file size you want to allow + # Uncomment if you are running lolisafe behind CloudFlare. + # This requires NGINX compiled from source with: + # --with-http_realip_module + #include /path/to/lolisafe/real-ip-from-cf; + location / { add_header Access-Control-Allow-Origin *; root /path/to/your/uploads/folder; diff --git a/pages/home.html b/pages/home.html index 30bff4e..947a4a7 100644 --- a/pages/home.html +++ b/pages/home.html @@ -82,7 +82,7 @@