summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-06-05 22:27:33 +0300
committerAndrew Dolgov <[email protected]>2022-06-05 22:27:33 +0300
commita2cb34c0abb519b997b797270e234e7a2e7d1b31 (patch)
treea23998ab800cd2f826040e86954e8d85a91616b4
parent35e47b575ae4afd42ca50e01b669aff00bb87447 (diff)
fix some README.md links
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0b885d0..40e8185 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ The Epube
web EPUB reader using EPUB.js, Bootstrap, and Calibre.
-https://git.tt-rss.org/fox/the-epube/wiki
+https://dev.tt-rss.org/fox/the-epube/wiki
Copyright (c) 2017 Andrew Dolgov (unless explicitly stated otherwise).
@@ -17,14 +17,14 @@ Requirements
Host installation
=================
-Note: Consider using [docker-compose](https://git.tt-rss.org/fox/epube-docker-compose) instead. Most of the stuff below is handled for you automatically then.
+Note: Consider using [docker-compose](https://dev.tt-rss.org/fox/the-epube/wiki#installation) instead. Most of the stuff below is handled for you automatically then.
```sh
git clone https://git.tt-rss.org/fox/the-epube.git the-epube
```
**WARNING:** since database folder is, by default, accessible for unauthenticated HTTP requests
-it is recommended to set ``SCRATCH_DB`` to a secure random value (i.e. ``db/long-random-string.db``)
+it is recommended to set ``SCRATCH_DB`` to a secure random value (i.e. ``db/long-random-string.db``)
or put it outside of scope accessible by your http server. Alternatively, you can simply block access
to ``db``:
@@ -39,8 +39,8 @@ location /the-epube/db {
```sh
php ./update.php --update-schema
```
-
-2. Ensure both <code>scratch.db</code> and its containing folder (i.e. <code>db/</code>) are writable by the
+
+2. Ensure both <code>scratch.db</code> and its containing folder (i.e. <code>db/</code>) are writable by the
application, normally this means chown-ing them as <code>www-data</code> or whatever user your httpd is running under.
```sh