aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGrégoire Marchal <gregoire.marchal@gmail.com>2013-04-17 18:47:53 +0300
committerGrégoire Marchal <gregoire.marchal@gmail.com>2013-04-17 18:47:53 +0300
commitdbb792bf2dd51771ec95f674aaea9ee501ac1d73 (patch)
tree4ab679736665c8e3063f1f4e9ba25a3ea8b14058 /README.md
parentd178419c66fb1950aee7dc8e012c35f12f2a44bc (diff)
downloadwallabag-dbb792bf2dd51771ec95f674aaea9ee501ac1d73.tar.gz
wallabag-dbb792bf2dd51771ec95f674aaea9ee501ac1d73.tar.zst
wallabag-dbb792bf2dd51771ec95f674aaea9ee501ac1d73.zip
Ajout conf nginx pour la protection de la bdd
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1015085a..34c45e63 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,14 @@ You **have** to protect your db/poche.sqlite file. Modify the virtual host of yo
36</Files> 36</Files>
37``` 37```
38 38
39Nginx version:
40```nginx
41location ~ /(db) {
42 deny all;
43 return 404;
44}
45```
46
39## Import from Pocket 47## Import from Pocket
40 48
41If you want to import your Pocket datas, [export them here](https://getpocket.com/export). Put the HTML file in your poche directory, execute import.php file locally by following instructions. Be careful, the script can take a very long time. 49If you want to import your Pocket datas, [export them here](https://getpocket.com/export). Put the HTML file in your poche directory, execute import.php file locally by following instructions. Be careful, the script can take a very long time.
@@ -44,4 +52,4 @@ If you want to import your Pocket datas, [export them here](https://getpocket.co
44Copyright © 2010-2013 Nicolas Lœuillet <nicolas@loeuillet.org> 52Copyright © 2010-2013 Nicolas Lœuillet <nicolas@loeuillet.org>
45This work is free. You can redistribute it and/or modify it under the 53This work is free. You can redistribute it and/or modify it under the
46terms of the Do What The Fuck You Want To Public License, Version 2, 54terms of the Do What The Fuck You Want To Public License, Version 2,
47as published by Sam Hocevar. See the COPYING file for more details. \ No newline at end of file 55as published by Sam Hocevar. See the COPYING file for more details.