Skip to content

Wallabag

Installation⚑

NGINX reverse proxy⚑

Block all feeds except starred⚑

If you want to share your Wallabag starred RSS feed but keep the others (all, read...) private, add:

location ~ /feed/{user}/{token}/(?!starred) {
   deny all;
   return 403;
  }