submitted 3 years ago* (last edited 3 years ago) by to c/asklemmy@lemmy.ml
 

I am currently self-hosting a meta search engine instance (searxng), which allows me combine searches from different engines (e.g. Google, Bing, Yahoo, etc), but also to filter out websites that I don't want to show up.

The only website to make my blacklist so far is slant.co (useless SEO-riddled site that always comes up when I search for software comparisons). I also automatically redirect all reddit.com links to old.reddit.com.

I'm looking to expand this list. So, which websites do you blacklist? Either using software, or just mentally.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] 9 points 3 years ago (1 child)

I'd be happy if there is a way to block webshops. You can block e.g. Amazon but then there will be another shop in its place.

I wasn't so happy with Searx but I think I'll have a look at SearXNG if blocking is an option

  • source
  • hideshow 2 child comments
  • [โ€“] [S] 4 points 3 years ago

    In SearXNG you can redirect, or block domains (but you still need to define them). You need to enable the "Hostname replace" pluging in the setting.yaml

    enabled_plugins:
      - 'Hostname replace'  # see hostname_replace configuration below
    

    And then define the rules like this:

    hostname_replace:
    #   My redirects
      '(.*\.)?reddit\.com$': 'old.reddit.com'
    #   My filters
      'slant\.co': false
      'dailymail\.co\.uk': false
    
  • source
  • parent