diff --git a/README.md b/README.md index 1ec4e3c..d33e9d9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # UpFast -simple tool to for uploading and sharing files that is selfhostable. +simple tool for uploading and sharing files that is selfhostable. ## How to host @@ -34,7 +34,7 @@ To run the docker container check the container id with `docker images` command. sudo docker run -p 8000:8000 -v ./upload:/usr/src/app/upload CONTAINER_ID ``` -The sample command will need a upload directory to where you run it from so you can replace `./upload` with a different path to save uploaded stuff. +The sample command will need an upload directory, you can replace `./upload` with a different path to save uploaded stuff. ### Nginx Proxy setup diff --git a/templates/files.html b/templates/files.html index 98aa978..c72a1d4 100644 --- a/templates/files.html +++ b/templates/files.html @@ -21,8 +21,8 @@
{{ file.content }}
{% endif %}
- {{ file.name }} - delete! + {{ file.name }} + delete!
{% endfor %} diff --git a/templates/index.html b/templates/index.html index 526ab3e..d7439ee 100644 --- a/templates/index.html +++ b/templates/index.html @@ -16,7 +16,7 @@

To delete a file using curl: curl "{{ request.url }}delete/file_name"

-

To get of all files hosten on the instance check files

+

To get of all files hosted on the instance check files

Created and maintained by Crony Akatsuki