aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2013-04-17 09:08:18 -0700
committerNicolas Lœuillet <nicolas@loeuillet.org>2013-04-17 09:08:18 -0700
commit7af30d31eef1003f2a787a6ffd4760856740064e (patch)
tree4ab679736665c8e3063f1f4e9ba25a3ea8b14058
parentd178419c66fb1950aee7dc8e012c35f12f2a44bc (diff)
parentdbb792bf2dd51771ec95f674aaea9ee501ac1d73 (diff)
downloadwallabag-7af30d31eef1003f2a787a6ffd4760856740064e.tar.gz
wallabag-7af30d31eef1003f2a787a6ffd4760856740064e.tar.zst
wallabag-7af30d31eef1003f2a787a6ffd4760856740064e.zip
Merge pull request #50 from Gregoire-M/patch-1
Ajout conf nginx pour la protection de la bdd
-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.