SearXNG

Search the internet securely without being tracked or profiled. This open-source metasearch engine aggregates results from over 200 sources with full privacy.

Take control of your online privacy with a powerful metasearch engine designed to keep your data secure. By aggregating results from up to 245 different search services, you get comprehensive answers without sacrificing your personal information. Users are never tracked or profiled, ensuring a completely anonymous browsing experience.

Key benefits include:

  • Zero tracking: Search the web without leaving a digital footprint or building a personal profile.
  • Extensive aggregation: Pulls search results from over 200 different engines and sources for maximum accuracy.
  • Enhanced anonymity: Fully compatible with Tor for users who require the highest level of online privacy.
  • Flexible security: Scripts and cookies are entirely optional, and all connections are securely encrypted.
  • Self-hosting options: Use one of the public instances or set up your own private server for ultimate control.

Directory Structure

searxng
.env
docker-compose.yml
settings.yml

docker-compose.yml

services:
  redis:
    container_name: redis
    image: redis:alpine
    command: redis-server --save "" --appendonly "no"
    networks:
      - searxng
    tmpfs:
      - /var/lib/redis
    cap_drop:
      - ALL
    cap_add:
      - SETGID
      - SETUID
      - DAC_OVERRIDE
    restart: always

  searxng:
    container_name: searxng
    image: searxng/searxng:latest
    networks:
      - searxng
    ports:
      - "${SEARXNG_PORT:-8080}:8080"
    volumes:
      - ./searxng:/etc/searxng:rw
    environment:
      - SEARXNG_BASE_URL=${SEARXNG_BASE_URL}
    cap_drop:
      - ALL
    cap_add:
      - CHOWN
      - SETGID
      - SETUID
      - DAC_OVERRIDE
    logging:
      driver: "json-file"
      options:
        max-size: "1m"
        max-file: "1"
    restart: always

networks:
  searxng:

.env

SEARXNG_BASE_URL=http://localhost:8080/
SEARXNG_PORT=8080
Categories:

Share:

Ad
Favicon

 

  
 

Similar to SearXNG

Favicon

 

  
  
Favicon

 

  
  
Favicon