diff --git a/.htaccess_ovh b/.htaccess_ovh deleted file mode 100644 index 0f55a01..0000000 --- a/.htaccess_ovh +++ /dev/null @@ -1,8 +0,0 @@ -SetEnv PHP_VER 5_4 -SetEnv ZEND_OPTIMIZER 1 -SetEnv MAGIC_QUOTES 0 - - - RewriteEngine on - RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] - \ No newline at end of file diff --git a/docs/faq.markdown b/docs/faq.markdown index 601edac..3615da8 100644 --- a/docs/faq.markdown +++ b/docs/faq.markdown @@ -1,5 +1,5 @@ -FAQ -=== +Frequently Asked Questions +========================== How does Miniflux update my feeds from the user interface? ---------------------------------------------------------- @@ -13,7 +13,7 @@ I have 600 subscriptions, can Miniflux handle that? Probably, but your life is cluttered. Why is feature X missing? ------------------------------------------------------- +------------------------- Miniflux is a minimalist software. _Less is more_. @@ -35,12 +35,21 @@ How to setup Miniflux on OVH shared-hosting? -------------------------------------------- OVH shared web-hosting can use different PHP versions. -To have Miniflux working properly you have to use a custom `.htaccess`. +To have Miniflux working properly you have to use a custom `.htaccess`, for example: -There is example in the Miniflux root folder. Just rename the file `.htaccess_ovh` to `.htaccess`. +``` +SetEnv PHP_VER 5_4 +SetEnv ZEND_OPTIMIZER 1 +SetEnv MAGIC_QUOTES 0 + + + RewriteEngine on + RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] + +``` I want to send bookmarks to Pinboard. How do I find my Pinboard API token? -------------------------------------------------------------------------- You can find your API token by going to [https://api.pinboard.in/v1/user/api_token/](https://api.pinboard.in/v1/user/api_token/). -Miniflux requires you to add your Pinboard username before this, followed by a colon (eg. bobsmith:12FC235692DF53DD1). \ No newline at end of file +Miniflux requires you to add your Pinboard username before this, followed by a colon (eg. bobsmith:12FC235692DF53DD1).