From 641a453cfd03e098b5e6376e035eafd080b08781 Mon Sep 17 00:00:00 2001 From: Korytov Pavel Date: Fri, 6 May 2022 10:21:28 +0300 Subject: [PATCH] docs: remove rss-bridge note Not necessary after #2 --- README.org | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/README.org b/README.org index 02ba72e..7211ba2 100644 --- a/README.org +++ b/README.org @@ -168,22 +168,6 @@ Then =RET= and =M-RET= in the =elfeed-summary= buffer will open the search buffe =elfeed-summary-width= regulates the width of the remaining summary window in this case. It is useful because the data in the search buffer is generally wider than in the summary buffer. The variable can also be set to =nil= to disable this behavior. ** Other options Also take a look at =M-x customize-group elfeed-summary= for the rest of available options. -* Known problems -** Usage with RSS-bridge -[[https://github.com/RSS-Bridge/rss-bridge][RSS-Bridge]] is a popular project to generate feeds, which unfortunately generates URLs like =?action=...= - -Which I don't know how to filter in elfeed, because filtering with ~=~ does not seem to account for the URL params. To resolve this, I've configured nginx the following way: - -#+begin_src conf -location /rss-bridge/ { - proxy_http_version 1.1; - proxy_set_header Connection ""; - rewrite ^/rss-bridge/rewrite/([0-9]+)/(.*)$ /$2 break; - proxy_pass http://localhost:8085/; -} -#+end_src - -This allows using URLs like: =/rewrite/1234/?action...=. Just don't forget the trailing slash. Setting a unique URL for every feed resolves the problem. * Ideas and alternatives