diff options
author | Grégoire Marchal <gregoire.marchal@gmail.com> | 2013-04-17 18:47:53 +0300 |
---|---|---|
committer | Grégoire Marchal <gregoire.marchal@gmail.com> | 2013-04-17 18:47:53 +0300 |
commit | dbb792bf2dd51771ec95f674aaea9ee501ac1d73 (patch) | |
tree | 4ab679736665c8e3063f1f4e9ba25a3ea8b14058 /README.md | |
parent | d178419c66fb1950aee7dc8e012c35f12f2a44bc (diff) | |
download | wallabag-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.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 | ||
39 | Nginx version: | ||
40 | ```nginx | ||
41 | location ~ /(db) { | ||
42 | deny all; | ||
43 | return 404; | ||
44 | } | ||
45 | ``` | ||
46 | |||
39 | ## Import from Pocket | 47 | ## Import from Pocket |
40 | 48 | ||
41 | If 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. | 49 | If 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 | |||
44 | Copyright © 2010-2013 Nicolas Lœuillet <nicolas@loeuillet.org> | 52 | Copyright © 2010-2013 Nicolas Lœuillet <nicolas@loeuillet.org> |
45 | This work is free. You can redistribute it and/or modify it under the | 53 | This work is free. You can redistribute it and/or modify it under the |
46 | terms of the Do What The Fuck You Want To Public License, Version 2, | 54 | terms of the Do What The Fuck You Want To Public License, Version 2, |
47 | as published by Sam Hocevar. See the COPYING file for more details. \ No newline at end of file | 55 | as published by Sam Hocevar. See the COPYING file for more details. |