250302-绿联NAS通过Docker配置SearXNG及适配Open-WebUI的yaml配置

A. 配置Docker中的代理

  • 绿联NAS简单解决docker无法获取镜像-不用软路由 - 哔哩哔哩

在这里插入图片描述

B. 下载官网对应的镜像

  • 群晖NAS用docker搭建SearXNG元搜索引擎_哔哩哔哩_bilibili

在这里插入图片描述

C. 修改默认省略的参数,只配置Base_URL,删除其它默认的空缺项

  • searxng-docker/README.md at main · pig-mesh/searxng-docker

在这里插入图片描述
在这里插入图片描述

D. 启动容器并访问

在这里插入图片描述

在这里插入图片描述

E. 适配Open-WebUI的配置文件

  • 修改1: bind_address: "0.0.0.0"
  • 修改2: - json
general:# Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}debug: false# displayed nameinstance_name: "searxng"# For example: https://example.com/privacyprivacypolicy_url: false# use true to use your own donation page written in searx/info/en/donate.md# use false to disable the donation linkdonation_url: false# mailto:contact@example.comcontact_url: false# record statsenable_metrics: true# expose stats in open metrics format at /metrics# leave empty to disable (no password set)# open_metrics: <password>open_metrics: ''brand:new_issue_url: https://github.com/searxng/searxng/issues/newdocs_url: https://docs.searxng.org/public_instances: https://searx.spacewiki_url: https://github.com/searxng/searxng/wikiissue_url: https://github.com/searxng/searxng/issues# custom:#   maintainer: "Jon Doe"#   # Custom entries in the footer: [title]: [link]#   links:#     Uptime: https://uptime.searxng.org/history/darmarit-org#     About: "https://searxng.org"search:# Filter results. 0: None, 1: Moderate, 2: Strictsafe_search: 0# Existing autocomplete backends: "baidu", "brave", "dbpedia", "duckduckgo", "google", "yandex",# "mwmbl", "seznam", "stract", "swisscows", "qwant", "wikipedia" -# leave blank to turn it off by default.autocomplete: ""# minimun characters to type before autocompleter startsautocomplete_min: 4# backend for the favicon near URL in search results.# Available resolvers: "allesedv", "duckduckgo", "google", "yandex" - leave blank to turn it off by default.favicon_resolver: ""# Default search language - leave blank to detect from browser information or# use codes from 'languages.py'default_lang: "auto"# max_page: 0  # if engine supports paging, 0 means unlimited numbers of pages# Available languages# languages:#   - all#   - en#   - en-US#   - de#   - it-IT#   - fr#   - fr-BE# ban time in seconds after engine errorsban_time_on_fail: 5# max ban time in seconds after engine errorsmax_ban_time_on_fail: 120suspended_times:# Engine suspension time after error (in seconds; set to 0 to disable)# For error "Access denied" and "HTTP error [402, 403]"SearxEngineAccessDenied: 86400# For error "CAPTCHA"SearxEngineCaptcha: 86400# For error "Too many request" and "HTTP error 429"SearxEngineTooManyRequests: 3600# Cloudflare CAPTCHAcf_SearxEngineCaptcha: 1296000cf_SearxEngineAccessDenied: 86400# ReCAPTCHArecaptcha_SearxEngineCaptcha: 604800# remove format to deny access, use lower case.# formats: [html, csv, json, rss]formats:- html- jsonserver:# Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}port: 8888bind_address: "0.0.0.0"# public URL of the instance, to ensure correct inbound links. Is overwritten# by ${SEARXNG_URL}.base_url: http://192.168.3.67:8081/  # "http://example.com/location"# rate limit the number of request on the instance, block some bots.# Is overwritten by ${SEARXNG_LIMITER}limiter: false# enable features designed only for public instances.# Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}public_instance: false# If your instance owns a /etc/searxng/settings.yml file, then set the following# values there.secret_key: "162207048976a3c40e633c9598a4e3a65665f2c9a311b1161ab8f014752535bc"  # Is overwritten by ${SEARXNG_SECRET}# Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}image_proxy: false# 1.0 and 1.1 are supportedhttp_protocol_version: "1.0"# POST queries are more secure as they don't show up in history but may cause# problems when using Firefox containersmethod: "POST"default_http_headers:X-Content-Type-Options: nosniffX-Download-Options: noopenX-Robots-Tag: noindex, nofollowReferrer-Policy: no-referrerredis:# URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.# https://docs.searxng.org/admin/settings/settings_redis.html#settings-redisurl: falseui:# Custom static path - leave it blank if you didn't changestatic_path: ""# Is overwritten by ${SEARXNG_STATIC_USE_HASH}.static_use_hash: false# Custom templates path - leave it blank if you didn't changetemplates_path: ""# query_in_title: When true, the result page's titles contains the query# it decreases the privacy, since the browser can records the page titles.query_in_title: false# infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.infinite_scroll: false# ui themedefault_theme: simple# center the results ?center_alignment: false# URL prefix of the internet archive, don't forget trailing slash (if needed).# cache_url: "https://webcache.googleusercontent.com/search?q=cache:"# Default interface locale - leave blank to detect from browser information or# use codes from the 'locales' config sectiondefault_locale: ""# Open result links in a new tab by default# results_on_new_tab: falsetheme_args:# style of simple theme: auto, light, darksimple_style: auto# Perform search immediately if a category selected.# Disable to select multiple categories at once and start the search manually.search_on_category_select: true# Hotkeys: default or vimhotkeys: default# URL formatting: pretty, full or hosturl_formatting: pretty# Lock arbitrary settings on the preferences page.
#
# preferences:
#   lock:
#     - categories
#     - language
#     - autocomplete
#     - favicon
#     - safesearch
#     - method
#     - doi_resolver
#     - locale
#     - theme
#     - results_on_new_tab
#     - infinite_scroll
#     - search_on_category_select
#     - method
#     - image_proxy
#     - query_in_title# searx supports result proxification using an external service:
# https://github.com/asciimoo/morty uncomment below section if you have running
# morty proxy the key is base64 encoded (keep the !!binary notation)
# Note: since commit af77ec3, morty accepts a base64 encoded key.
#
# result_proxy:
#   url: http://127.0.0.1:3000/
#   # the key is a base64 encoded string, the YAML !!binary prefix is optional
#   key: !!binary "your_morty_proxy_key"
#   # [true|false] enable the "proxy" button next to each result
#   proxify_results: true# communication with search engines
#
outgoing:# default timeout in seconds, can be override by enginerequest_timeout: 3.0# the maximum timeout in seconds# max_request_timeout: 10.0# suffix of searx_useragent, could contain information like an email address# to the administratoruseragent_suffix: ""# The maximum number of concurrent connections that may be established.pool_connections: 100# Allow the connection pool to maintain keep-alive connections below this# point.pool_maxsize: 20# See https://www.python-httpx.org/http2/enable_http2: true# uncomment below section if you want to use a custom server certificate# see https://www.python-httpx.org/advanced/#changing-the-verification-defaults# and https://www.python-httpx.org/compatibility/#ssl-configuration#  verify: ~/.mitmproxy/mitmproxy-ca-cert.cer## uncomment below section if you want to use a proxyq see: SOCKS proxies#   https://2.python-requests.org/en/latest/user/advanced/#proxies# are also supported: see#   https://2.python-requests.org/en/latest/user/advanced/#socks##  proxies:#    all://:#      - http://proxy1:8080#      - http://proxy2:8080##  using_tor_proxy: true## Extra seconds to add in order to account for the time taken by the proxy##  extra_proxy_timeout: 10## uncomment below section only if you have more than one network interface# which can be the source of outgoing search requests##  source_ips:#    - 1.1.1.1#    - 1.1.1.2#    - fe80::/126# External plugin configuration, for more details see
#   https://docs.searxng.org/admin/settings/settings_plugins.html
#
# plugins:
#   - mypackage.mymodule.MyPlugin
#   - mypackage.mymodule.MyOtherPlugin
#   - ...# Comment or un-comment plugin to activate / deactivate by default.
#   https://docs.searxng.org/admin/settings/settings_plugins.html
#
# enabled_plugins:
#   # these plugins are enabled if nothing is configured ..
#   - 'Basic Calculator'
#   - 'Hash plugin'
#   - 'Self Information'
#   - 'Tracker URL remover'
#   - 'Unit converter plugin'
#   - 'Ahmia blacklist'  # activation depends on outgoing.using_tor_proxy
#   # these plugins are disabled if nothing is configured ..
#   - 'Hostnames plugin'  # see 'hostnames' configuration below
#   - 'Open Access DOI rewrite'
#   - 'Tor check plugin'# Configuration of the "Hostnames plugin":
#
# hostnames:
#   replace:
#     '(.*\.)?youtube\.com$': 'invidious.example.com'
#     '(.*\.)?youtu\.be$': 'invidious.example.com'
#     '(.*\.)?reddit\.com$': 'teddit.example.com'
#     '(.*\.)?redd\.it$': 'teddit.example.com'
#     '(www\.)?twitter\.com$': 'nitter.example.com'
#   remove:
#     - '(.*\.)?facebook.com$'
#   low_priority:
#     - '(.*\.)?google(\..*)?$'
#   high_priority:
#     - '(.*\.)?wikipedia.org$'
#
# Alternatively you can use external files for configuring the "Hostnames plugin":
#
# hostnames:
#  replace: 'rewrite-hosts.yml'
#
# Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'):
# '(.*\.)?youtube\.com$': 'invidious.example.com'
# '(.*\.)?youtu\.be$': 'invidious.example.com'
#checker:# disable checker when in debug modeoff_when_debug: true# use "scheduling: false" to disable scheduling# scheduling: interval or int# to activate the scheduler:# * uncomment "scheduling" section# * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"#   to your uwsgi.ini# scheduling:#   start_after: [300, 1800]  # delay to start the first run of the checker#   every: [86400, 90000]     # how often the checker runs# additional tests: only for the YAML anchors (see the engines section)#additional_tests:rosebud: &test_rosebudmatrix:query: rosebudlang: enresult_container:- not_empty- ['one_title_contains', 'citizen kane']test:- unique_resultsandroid: &test_androidmatrix:query: ['android']lang: ['en', 'de', 'fr', 'zh-CN']result_container:- not_empty- ['one_title_contains', 'google']test:- unique_results# tests: only for the YAML anchors (see the engines section)tests:infobox: &tests_infoboxinfobox:matrix:query: ["linux", "new york", "bbc"]result_container:- has_infoboxcategories_as_tabs:general:images:videos:news:map:music:it:science:files:social media:engines:- name: 9gagengine: 9gagshortcut: 9gdisabled: true- name: adobe stockengine: adobe_stockshortcut: asicategories: ["images"]# https://docs.searxng.org/dev/engines/online/adobe_stock.htmladobe_order: relevanceadobe_content_types: ["photo", "illustration", "zip_vector", "template", "3d", "image"]timeout: 6disabled: true- name: adobe stock videoengine: adobe_stockshortcut: asvnetwork: adobe stockcategories: ["videos"]adobe_order: relevanceadobe_content_types: ["video"]timeout: 6disabled: true- name: adobe stock audioengine: adobe_stockshortcut: asanetwork: adobe stockcategories: ["music"]adobe_order: relevanceadobe_content_types: ["audio"]timeout: 6disabled: true- name: alexandriaengine: json_engineshortcut: alxcategories: generalpaging: truesearch_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}results_query: resultstitle_query: titleurl_query: urlcontent_query: snippettimeout: 1.5disabled: trueabout:website: https://alexandria.org/official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.mduse_official_api: truerequire_api_key: falseresults: JSON# - name: astrophysics data system#   engine: astrophysics_data_system#   sort: asc#   weight: 5#   categories: [science]#   api_key: your-new-key#   shortcut: ads- name: alpine linux packagesengine: alpinelinuxdisabled: trueshortcut: alp- name: annas archiveengine: annas_archivedisabled: trueshortcut: aa# - name: annas articles#   engine: annas_archive#   shortcut: aaa#   # https://docs.searxng.org/dev/engines/online/annas_archive.html#   aa_content: 'magazine' # book_fiction, book_unknown, book_nonfiction, book_comic#   aa_ext: 'pdf'  # pdf, epub, ..#   aa_sort: oldest'  # newest, oldest, largest, smallest- name: apk mirrorengine: apkmirrortimeout: 4.0shortcut: apkmdisabled: true- name: apple app storeengine: apple_app_storeshortcut: apsdisabled: true# Requires Tor- name: ahmiaengine: ahmiacategories: onionsenable_http: trueshortcut: ah- name: anacondaengine: xpathpaging: truefirst_page_num: 0search_url: https://anaconda.org/search?q={query}&page={pageno}results_xpath: //tbody/trurl_xpath: ./td/h5/a[last()]/@hreftitle_xpath: ./td/h5content_xpath: ./td[h5]/text()categories: ittimeout: 6.0shortcut: condadisabled: true- name: arch linux wikiengine: archlinuxshortcut: al- name: nixos wikiengine: mediawikishortcut: nixwbase_url: https://wiki.nixos.org/search_type: textdisabled: truecategories: [it, software wikis]- name: articengine: articshortcut: arctimeout: 4.0- name: arxivengine: arxivshortcut: arxtimeout: 4.0- name: askengine: askshortcut: askdisabled: true# tmp suspended:  dh key too small# - name: base#   engine: base#   shortcut: bs- name: bandcampengine: bandcampshortcut: bccategories: music- name: wikipediaengine: wikipediashortcut: wp# add "list" to the array to get results in the results listdisplay_type: ["infobox"]categories: [general]- name: bilibiliengine: bilibilishortcut: bildisabled: true- name: bingengine: bingshortcut: bidisabled: true- name: bing imagesengine: bing_imagesshortcut: bii- name: bing newsengine: bing_newsshortcut: bin- name: bing videosengine: bing_videosshortcut: biv- name: bitbucketengine: xpathpaging: truesearch_url: https://bitbucket.org/repo/all/{pageno}?name={query}url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@hreftitle_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]content_xpath: //article[@class="repo-summary"]/pcategories: [it, repos]timeout: 4.0disabled: trueshortcut: bbabout:website: https://bitbucket.org/wikidata_id: Q2493781official_api_documentation: https://developer.atlassian.com/bitbucketuse_official_api: falserequire_api_key: falseresults: HTML- name: bpbengine: bpbshortcut: bpbdisabled: true- name: btdiggengine: btdiggshortcut: btdisabled: true- name: openverseengine: openversecategories: imagesshortcut: opv- name: media.ccc.deengine: ccc_mediashortcut: c3tv# We don't set language: de here because media.ccc.de is not just# for a German audience. It contains many English videos and many# German videos have English subtitles.disabled: true- name: chefkochengine: chefkochshortcut: chef# to show premium or plus results too:# skip_premium: false- name: cloudflareaiengine: cloudflareaishortcut: cfai# get api token and accont id from https://developers.cloudflare.com/workers-ai/get-started/rest-api/cf_account_id: 'your_cf_accout_id'cf_ai_api: 'your_cf_api'# create your ai gateway by https://developers.cloudflare.com/ai-gateway/get-started/creating-gateway/cf_ai_gateway: 'your_cf_ai_gateway_name'# find the model name from https://developers.cloudflare.com/workers-ai/models/#text-generationcf_ai_model: 'ai_model_name'# custom your preferences# cf_ai_model_display_name: 'Cloudflare AI'# cf_ai_model_assistant: 'prompts_for_assistant_role'# cf_ai_model_system: 'prompts_for_system_role'timeout: 30disabled: true# - name: core.ac.uk#   engine: core#   categories: science#   shortcut: cor#   # get your API key from: https://core.ac.uk/api-keys/register/#   api_key: 'unset'- name: cppreferenceengine: cppreferenceshortcut: cpppaging: falsedisabled: true- name: crossrefengine: crossrefshortcut: crtimeout: 30disabled: true- name: crowdviewengine: json_engineshortcut: cvcategories: generalpaging: falsesearch_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}results_query: resultsurl_query: linktitle_query: titlecontent_query: snippettitle_html_to_text: truecontent_html_to_text: truedisabled: trueabout:website: https://crowdview.ai/- name: yepengine: yepshortcut: yepcategories: generalsearch_type: webtimeout: 5disabled: true- name: yep imagesengine: yepshortcut: yepicategories: imagessearch_type: imagesdisabled: true- name: yep newsengine: yepshortcut: yepncategories: newssearch_type: newsdisabled: true- name: curlieengine: xpathshortcut: clcategories: generaldisabled: truepaging: truelang_all: ''search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189page_size: 20results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]url_xpath: ./div[@class="title-and-desc"]/a/@hreftitle_xpath: ./div[@class="title-and-desc"]/a/divcontent_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]about:website: https://curlie.org/wikidata_id: Q60715723use_official_api: falserequire_api_key: falseresults: HTML- name: currencyengine: currency_convertcategories: generalshortcut: cc- name: deezerengine: deezershortcut: dzdisabled: true- name: destatisengine: destatisshortcut: destatdisabled: true- name: deviantartengine: deviantartshortcut: datimeout: 3.0- name: ddg definitionsengine: duckduckgo_definitionsshortcut: dddweight: 2disabled: truetests: *tests_infobox# cloudflare protected# - name: digbt#   engine: digbt#   shortcut: dbt#   timeout: 6.0#   disabled: true- name: docker hubengine: docker_hubshortcut: dhcategories: [it, packages]- name: encyclosearchengine: json_engineshortcut: escategories: generalpaging: truesearch_url: https://encyclosearch.org/encyclosphere/search?q={query}&page={pageno}&resultsPerPage=15results_query: Resultsurl_query: SourceURLtitle_query: Titlecontent_query: Descriptiondisabled: trueabout:website: https://encyclosearch.orgofficial_api_documentation: https://encyclosearch.org/docs/#/rest-apiuse_official_api: truerequire_api_key: falseresults: JSON- name: erowidengine: xpathpaging: truefirst_page_num: 0page_size: 30search_url: https://www.erowid.org/search.php?q={query}&s={pageno}url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@hreftitle_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]categories: []shortcut: ewdisabled: trueabout:website: https://www.erowid.org/wikidata_id: Q1430691official_api_documentation:use_official_api: falserequire_api_key: falseresults: HTML# - name: elasticsearch#   shortcut: es#   engine: elasticsearch#   base_url: http://localhost:9200#   username: elastic#   password: changeme#   index: my-index#   # available options: match, simple_query_string, term, terms, custom#   query_type: match#   # if query_type is set to custom, provide your query here#   #custom_query_json: {"query":{"match_all": {}}}#   #show_metadata: false#   disabled: true- name: wikidataengine: wikidatashortcut: wdtimeout: 3.0weight: 2# add "list" to the array to get results in the results listdisplay_type: ["infobox"]tests: *tests_infoboxcategories: [general]- name: duckduckgoengine: duckduckgoshortcut: ddg- name: duckduckgo imagesengine: duckduckgo_extracategories: [images, web]ddg_category: imagesshortcut: ddidisabled: true- name: duckduckgo videosengine: duckduckgo_extracategories: [videos, web]ddg_category: videosshortcut: ddvdisabled: true- name: duckduckgo newsengine: duckduckgo_extracategories: [news, web]ddg_category: newsshortcut: ddndisabled: true- name: duckduckgo weatherengine: duckduckgo_weathershortcut: ddwdisabled: true- name: apple mapsengine: apple_mapsshortcut: apmdisabled: truetimeout: 5.0- name: emojipediaengine: emojipediatimeout: 4.0shortcut: emdisabled: true- name: tineyeengine: tineyeshortcut: tintimeout: 9.0disabled: true- name: etymonlineengine: xpathpaging: truesearch_url: https://etymonline.com/search?page={pageno}&q={query}url_xpath: //a[contains(@class, "word__name--")]/@hreftitle_xpath: //a[contains(@class, "word__name--")]content_xpath: //section[contains(@class, "word__defination")]first_page_num: 1shortcut: etcategories: [dictionaries]about:website: https://www.etymonline.com/wikidata_id: Q1188617official_api_documentation:use_official_api: falserequire_api_key: falseresults: HTML# - name: ebay#   engine: ebay#   shortcut: eb#   base_url: 'https://www.ebay.com'#   disabled: true#   timeout: 5- name: 1xengine: www1xshortcut: 1xtimeout: 3.0disabled: true- name: fdroidengine: fdroidshortcut: fddisabled: true- name: findthatmemeengine: findthatmemeshortcut: ftmdisabled: true- name: flickrcategories: imagesshortcut: fl# You can use the engine using the official stable API, but you need an API# key, see: https://www.flickr.com/services/apps/create/# engine: flickr# api_key: 'apikey' # required!# Or you can use the html non-stable engine, activated by defaultengine: flickr_noapi- name: free software directoryengine: mediawikishortcut: fsdcategories: [it, software wikis]base_url: https://directory.fsf.org/search_type: titletimeout: 5.0disabled: trueabout:website: https://directory.fsf.org/wikidata_id: Q2470288# - name: freesound#   engine: freesound#   shortcut: fnd#   disabled: true#   timeout: 15.0# API key required, see: https://freesound.org/docs/api/overview.html#   api_key: MyAPIkey- name: frinkiacengine: frinkiacshortcut: frkdisabled: true- name: fyydengine: fyydshortcut: fytimeout: 8.0disabled: true- name: geizhalsengine: geizhalsshortcut: geizdisabled: true- name: geniusengine: geniusshortcut: gen- name: gentooengine: mediawikishortcut: gecategories: ["it", "software wikis"]base_url: "https://wiki.gentoo.org/"api_path: "api.php"search_type: texttimeout: 10- name: gitlabengine: gitlabbase_url: https://gitlab.comshortcut: gldisabled: trueabout:website: https://gitlab.com/wikidata_id: Q16639197# - name: gnome#   engine: gitlab#   base_url: https://gitlab.gnome.org#   shortcut: gn#   about:#     website: https://gitlab.gnome.org#     wikidata_id: Q44316- name: githubengine: githubshortcut: gh- name: codeberg# https://docs.searxng.org/dev/engines/online/gitea.htmlengine: giteabase_url: https://codeberg.orgshortcut: cbdisabled: true- name: gitea.comengine: giteabase_url: https://gitea.comshortcut: giteadisabled: true- name: goodreadsengine: goodreadsshortcut: goodtimeout: 4.0disabled: true- name: googleengine: googleshortcut: go# additional_tests:#   android: *test_android- name: google imagesengine: google_imagesshortcut: goi# additional_tests:#   android: *test_android#   dali:#     matrix:#       query: ['Dali Christ']#       lang: ['en', 'de', 'fr', 'zh-CN']#     result_container:#       - ['one_title_contains', 'Salvador']- name: google newsengine: google_newsshortcut: gon# additional_tests:#   android: *test_android- name: google videosengine: google_videosshortcut: gov# additional_tests:#   android: *test_android- name: google scholarengine: google_scholarshortcut: gos- name: google play appsengine: google_playcategories: [files, apps]shortcut: gpaplay_categ: appsdisabled: true- name: google play moviesengine: google_playcategories: videosshortcut: gpmplay_categ: moviesdisabled: true- name: material iconsengine: material_iconscategories: imagesshortcut: midisabled: true- name: habrahabrengine: xpathpaging: truesearch_url: https://habr.com/en/search/page{pageno}/?q={query}results_xpath: //article[contains(@class, "tm-articles-list__item")]url_xpath: .//a[@class="tm-title__link"]/@hreftitle_xpath: .//a[@class="tm-title__link"]content_xpath: .//div[contains(@class, "article-formatted-body")]categories: ittimeout: 4.0disabled: trueshortcut: habrabout:website: https://habr.com/wikidata_id: Q4494434official_api_documentation: https://habr.com/en/docs/help/api/use_official_api: falserequire_api_key: falseresults: HTML- name: hackernewsengine: hackernewsshortcut: hndisabled: true- name: hexengine: hexshortcut: hexdisabled: true# Valid values: name inserted_at updated_at total_downloads recent_downloadssort_criteria: "recent_downloads"page_size: 10- name: crates.ioengine: cratesshortcut: cratesdisabled: truetimeout: 6.0- name: hoogleengine: xpathsearch_url: https://hoogle.haskell.org/?hoogle={query}results_xpath: '//div[@class="result"]'title_xpath: './/div[@class="ans"]//a'url_xpath: './/div[@class="ans"]//a/@href'content_xpath: './/div[@class="from"]'page_size: 20categories: [it, packages]shortcut: hoabout:website: https://hoogle.haskell.org/wikidata_id: Q34010official_api_documentation: https://hackage.haskell.org/apiuse_official_api: falserequire_api_key: falseresults: JSON- name: imdbengine: imdbshortcut: imdbtimeout: 6.0disabled: true- name: imgurengine: imgurshortcut: imgdisabled: true- name: inaengine: inashortcut: intimeout: 6.0disabled: true- name: invidiousengine: invidious# Instanes will be selected randomly, see https://api.invidious.io/ for# instances that are stable (good uptime) and close to you.base_url:- https://invidious.adminforge.de- https://inv.nadeko.netshortcut: ivtimeout: 3.0disabled: true- name: ipernityengine: ipernityshortcut: ipdisabled: true- name: jishoengine: jishoshortcut: jstimeout: 3.0disabled: true- name: kickassengine: kickassbase_url:- https://kickasstorrents.to- https://kickasstorrents.cr- https://kickasstorrent.cr- https://kickass.sx- https://kat.amshortcut: kctimeout: 4.0- name: lemmy communitiesengine: lemmylemmy_type: Communitiesshortcut: leco- name: lemmy usersengine: lemmynetwork: lemmy communitieslemmy_type: Usersshortcut: leus- name: lemmy postsengine: lemmynetwork: lemmy communitieslemmy_type: Postsshortcut: lepo- name: lemmy commentsengine: lemmynetwork: lemmy communitieslemmy_type: Commentsshortcut: lecom- name: library genesisengine: xpath# search_url: https://libgen.is/search.php?req={query}search_url: https://libgen.rs/search.php?req={query}url_xpath: //a[contains(@href,"book/index.php?md5")]/@hreftitle_xpath: //a[contains(@href,"book/")]/text()[1]content_xpath: //td/a[1][contains(@href,"=author")]/text()categories: filestimeout: 7.0disabled: trueshortcut: lgabout:website: https://libgen.fun/wikidata_id: Q22017206official_api_documentation:use_official_api: falserequire_api_key: falseresults: HTML- name: z-libraryengine: zlibraryshortcut: zlibcategories: filestimeout: 7.0- name: library of congressengine: locshortcut: loccategories: images- name: libretranslateengine: libretranslate# https://github.com/LibreTranslate/LibreTranslate?tab=readme-ov-file#mirrorsbase_url:- https://libretranslate.com/translate# api_key: abc123shortcut: ltdisabled: true- name: lingvaengine: lingvashortcut: lv# set lingva instance in url, by default it will use the official instance# url: https://lingva.thedaviddelta.com- name: lobste.rsengine: xpathsearch_url: https://lobste.rs/search?q={query}&what=stories&order=relevanceresults_xpath: //li[contains(@class, "story")]url_xpath: .//a[@class="u-url"]/@hreftitle_xpath: .//a[@class="u-url"]content_xpath: .//a[@class="domain"]categories: itshortcut: lotimeout: 5.0disabled: trueabout:website: https://lobste.rs/wikidata_id: Q60762874official_api_documentation:use_official_api: falserequire_api_key: falseresults: HTML- name: mastodon usersengine: mastodonmastodon_type: accountsbase_url: https://mastodon.socialshortcut: mau- name: mastodon hashtagsengine: mastodonmastodon_type: hashtagsbase_url: https://mastodon.socialshortcut: mah# - name: matrixrooms#   engine: mrs#   # https://docs.searxng.org/dev/engines/online/mrs.html#   # base_url: https://mrs-api-host#   shortcut: mtrx#   disabled: true- name: mdnshortcut: mdnengine: json_enginecategories: [it]paging: truesearch_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}results_query: documentsurl_query: mdn_urlurl_prefix: https://developer.mozilla.orgtitle_query: titlecontent_query: summaryabout:website: https://developer.mozilla.orgwikidata_id: Q3273508official_api_documentation: nulluse_official_api: falserequire_api_key: falseresults: JSON- name: metacpanengine: metacpanshortcut: cpandisabled: truenumber_of_results: 20# - name: meilisearch#   engine: meilisearch#   shortcut: mes#   enable_http: true#   base_url: http://localhost:7700#   index: my-index- name: mixcloudengine: mixcloudshortcut: mc# MongoDB engine# Required dependency: pymongo# - name: mymongo#   engine: mongodb#   shortcut: md#   exact_match_only: false#   host: '127.0.0.1'#   port: 27017#   enable_http: true#   results_per_page: 20#   database: 'business'#   collection: 'reviews'  # name of the db collection#   key: 'name'  # key in the collection to search for- name: mozhiengine: mozhibase_url:- https://mozhi.aryak.me- https://translate.bus-hit.me- https://nyc1.mz.ggtyler.dev# mozhi_engine: google - see https://mozhi.aryak.me for supported enginestimeout: 4.0shortcut: mzdisabled: true- name: mwmblengine: mwmbl# api_url: https://api.mwmbl.orgshortcut: mwmdisabled: true- name: npmengine: npmshortcut: npmtimeout: 5.0disabled: true- name: nyaaengine: nyaashortcut: ntdisabled: true- name: mankierengine: json_enginesearch_url: https://www.mankier.com/api/v2/mans/?q={query}results_query: resultsurl_query: urltitle_query: namecontent_query: descriptioncategories: itshortcut: manabout:website: https://www.mankier.com/official_api_documentation: https://www.mankier.com/apiuse_official_api: truerequire_api_key: falseresults: JSON# read https://docs.searxng.org/dev/engines/online/mullvad_leta.html# - name: mullvadleta#   engine: mullvad_leta#   leta_engine: google # choose one of the following: google, brave#   use_cache: true  # Only 100 non-cache searches per day, suggested only for private instances#   search_url: https://leta.mullvad.net#   categories: [general, web]#   shortcut: ml- name: odyseeengine: odyseeshortcut: oddisabled: true- name: openairedatasetsengine: json_enginepaging: truesearch_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}results_query: response/results/resulturl_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$title_query: metadata/oaf:entity/oaf:result/title/$content_query: metadata/oaf:entity/oaf:result/description/$content_html_to_text: truecategories: "science"shortcut: oadtimeout: 5.0about:website: https://www.openaire.eu/wikidata_id: Q25106053official_api_documentation: https://api.openaire.eu/use_official_api: falserequire_api_key: falseresults: JSON- name: openairepublicationsengine: json_enginepaging: truesearch_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}results_query: response/results/resulturl_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$title_query: metadata/oaf:entity/oaf:result/title/$content_query: metadata/oaf:entity/oaf:result/description/$content_html_to_text: truecategories: scienceshortcut: oaptimeout: 5.0about:website: https://www.openaire.eu/wikidata_id: Q25106053official_api_documentation: https://api.openaire.eu/use_official_api: falserequire_api_key: falseresults: JSON- name: openclipartengine: openclipartshortcut: oclinactive: truedisabled: truetimeout: 30- name: openlibraryengine: openlibraryshortcut: oltimeout: 5disabled: true- name: openmeteoengine: open_meteoshortcut: omdisabled: true# - name: opensemanticsearch#   engine: opensemantic#   shortcut: oss#   base_url: 'http://localhost:8983/solr/opensemanticsearch/'- name: openstreetmapengine: openstreetmapshortcut: osm- name: openreposengine: xpathpaging: truesearch_url: https://openrepos.net/search/node/{query}?page={pageno}url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@hreftitle_xpath: //li[@class="search-result"]//h3[@class="title"]/acontent_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]categories: filestimeout: 4.0disabled: trueshortcut: orabout:website: https://openrepos.net/wikidata_id:official_api_documentation:use_official_api: falserequire_api_key: falseresults: HTML- name: packagistengine: json_enginepaging: truesearch_url: https://packagist.org/search.json?q={query}&page={pageno}results_query: resultsurl_query: urltitle_query: namecontent_query: descriptioncategories: [it, packages]disabled: truetimeout: 5.0shortcut: packabout:website: https://packagist.orgwikidata_id: Q108311377official_api_documentation: https://packagist.org/apidocuse_official_api: truerequire_api_key: falseresults: JSON- name: pdbeengine: pdbeshortcut: pdb# Hide obsolete PDB entries.  Default is not to hide obsolete structures#  hide_obsolete: false- name: photonengine: photonshortcut: ph- name: pinterestengine: pinterestshortcut: pin- name: pipedengine: pipedshortcut: ppdcategories: videospiped_filter: videostimeout: 3.0# URL to use as link and for embedsfrontend_url: https://srv.piped.video# Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/backend_url:- https://pipedapi.adminforge.de- https://pipedapi.nosebs.ru- https://pipedapi.ducks.party- https://pipedapi.reallyaweso.me- https://api.piped.private.coffee- https://pipedapi.darkness.services- name: piped.musicengine: pipednetwork: pipedshortcut: ppdmcategories: musicpiped_filter: music_songstimeout: 3.0- name: piratebayengine: piratebayshortcut: tpb# You may need to change this URL to a proxy if piratebay is blocked in your# countryurl: https://thepiratebay.org/timeout: 3.0- name: pixivshortcut: pvengine: pixivdisabled: trueinactive: truepixiv_image_proxies:- https://pximg.example.org# A proxy is required to load the images. Hosting an image proxy server# for Pixiv:#    --> https://pixivfe.pages.dev/hosting-image-proxy-server/# Proxies from public instances.  Ask the public instances owners if they# agree to receive traffic from SearXNG!#    --> https://codeberg.org/VnPower/PixivFE#instances#    --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047# image proxy of https://pixiv.cat# - https://i.pixiv.cat# image proxy of https://www.pixiv.pics# - https://pximg.cocomi.eu.org# image proxy of https://pixivfe.exozy.me# - https://pximg.exozy.me# image proxy of https://pixivfe.ducks.party# - https://pixiv.ducks.party# image proxy of https://pixiv.perennialte.ch# - https://pximg.perennialte.ch- name: podcastindexengine: podcastindexshortcut: podcast# Required dependency: psychopg2#  - name: postgresql#    engine: postgresql#    database: postgres#    username: postgres#    password: postgres#    limit: 10#    query_str: 'SELECT * from my_table WHERE my_column = %(query)s'#    shortcut : psql- name: presearchengine: presearchsearch_type: searchcategories: [general, web]shortcut: pstimeout: 4.0disabled: true- name: presearch imagesengine: presearchnetwork: presearchsearch_type: imagescategories: [images, web]timeout: 4.0shortcut: psimgdisabled: true- name: presearch videosengine: presearchnetwork: presearchsearch_type: videoscategories: [general, web]timeout: 4.0shortcut: psviddisabled: true- name: presearch newsengine: presearchnetwork: presearchsearch_type: newscategories: [news, web]timeout: 4.0shortcut: psnewsdisabled: true- name: pub.devengine: xpathshortcut: pdsearch_url: https://pub.dev/packages?q={query}&page={pageno}paging: trueresults_xpath: //div[contains(@class,"packages-item")]url_xpath: ./div/h3/a/@hreftitle_xpath: ./div/h3/acontent_xpath: ./div/div/div[contains(@class,"packages-description")]/spancategories: [packages, it]timeout: 3.0disabled: truefirst_page_num: 1about:website: https://pub.dev/official_api_documentation: https://pub.dev/help/apiuse_official_api: falserequire_api_key: falseresults: HTML- name: public domain image archiveengine: public_domain_image_archiveshortcut: pdia- name: pubmedengine: pubmedshortcut: pubtimeout: 3.0- name: pypishortcut: pypiengine: pypi- name: qwantqwant_categ: webengine: qwantshortcut: qwcategories: [general, web]additional_tests:rosebud: *test_rosebud- name: qwant newsqwant_categ: newsengine: qwantshortcut: qwncategories: newsnetwork: qwant- name: qwant imagesqwant_categ: imagesengine: qwantshortcut: qwicategories: [images, web]network: qwant- name: qwant videosqwant_categ: videosengine: qwantshortcut: qwvcategories: [videos, web]network: qwant# - name: library#   engine: recoll#   shortcut: lib#   base_url: 'https://recoll.example.org/'#   search_dir: ''#   mount_prefix: /export#   dl_prefix: 'https://download.example.org'#   timeout: 30.0#   categories: files#   disabled: true# - name: recoll library reference#   engine: recoll#   base_url: 'https://recoll.example.org/'#   search_dir: reference#   mount_prefix: /export#   dl_prefix: 'https://download.example.org'#   shortcut: libr#   timeout: 30.0#   categories: files#   disabled: true- name: radio browserengine: radio_browsershortcut: rb- name: redditengine: redditshortcut: repage_size: 25disabled: true- name: right daoengine: xpathpaging: truepage_size: 12search_url: https://rightdao.com/search?q={query}&start={pageno}results_xpath: //div[contains(@class, "description")]url_xpath: ../div[contains(@class, "title")]/a/@hreftitle_xpath: ../div[contains(@class, "title")]content_xpath: .categories: generalshortcut: rddisabled: trueabout:website: https://rightdao.com/use_official_api: falserequire_api_key: falseresults: HTML- name: rottentomatoesengine: rottentomatoesshortcut: rtdisabled: true# Required dependency: redis# - name: myredis#   shortcut : rds#   engine: redis_server#   exact_match_only: false#   host: '127.0.0.1'#   port: 6379#   enable_http: true#   password: ''#   db: 0# tmp suspended: bad certificate#  - name: scanr structures#    shortcut: scs#    engine: scanr_structures#    disabled: true- name: searchmysiteengine: xpathshortcut: smscategories: generalpaging: truesearch_url: https://searchmysite.net/search/?q={query}&page={pageno}results_xpath: //div[contains(@class,'search-result')]url_xpath: .//a[contains(@class,'result-link')]/@hreftitle_xpath: .//span[contains(@class,'result-title-txt')]/text()content_xpath: ./p[@id='result-hightlight']disabled: trueabout:website: https://searchmysite.net- name: sepiasearchengine: sepiasearchshortcut: sep- name: soundcloudengine: soundcloudshortcut: sc- name: stackoverflowengine: stackexchangeshortcut: stapi_site: 'stackoverflow'categories: [it, q&a]- name: askubuntuengine: stackexchangeshortcut: ubuntuapi_site: 'askubuntu'categories: [it, q&a]- name: superuserengine: stackexchangeshortcut: suapi_site: 'superuser'categories: [it, q&a]- name: discuss.pythonengine: discourseshortcut: dpybase_url: 'https://discuss.python.org'categories: [it, q&a]disabled: true- name: caddy.communityengine: discourseshortcut: caddybase_url: 'https://caddy.community'categories: [it, q&a]disabled: true- name: pi-hole.communityengine: discourseshortcut: picategories: [it, q&a]base_url: 'https://discourse.pi-hole.net'disabled: true- name: searchcode codeengine: searchcode_codeshortcut: sccdisabled: true# - name: searx#   engine: searx_engine#   shortcut: se#   instance_urls :#       - http://127.0.0.1:8888/#       - ...#   disabled: true- name: semantic scholarengine: semantic_scholardisabled: trueshortcut: se# Spotify needs API credentials# - name: spotify#   engine: spotify#   shortcut: stf#   api_client_id: *******#   api_client_secret: *******# - name: solr#   engine: solr#   shortcut: slr#   base_url: http://localhost:8983#   collection: collection_name#   sort: '' # sorting: asc or desc#   field_list: '' # comma separated list of field names to display on the UI#   default_fields: '' # default field to query#   query_fields: '' # query fields#   enable_http: true# - name: springer nature#   engine: springer#   # get your API key from: https://dev.springernature.com/signup#   # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"#   api_key: 'unset'#   shortcut: springer#   timeout: 15.0- name: startpageengine: startpageshortcut: spstartpage_categ: webcategories: [general, web]additional_tests:rosebud: *test_rosebud- name: startpage newsengine: startpagestartpage_categ: newscategories: [news, web]shortcut: spn- name: startpage imagesengine: startpagestartpage_categ: imagescategories: [images, web]shortcut: spi- name: tokyotoshokanengine: tokyotoshokanshortcut: tttimeout: 6.0disabled: true- name: solidtorrentsengine: solidtorrentsshortcut: solidtimeout: 4.0base_url:- https://solidtorrents.to- https://bitsearch.to# For this demo of the sqlite engine download:#   https://liste.mediathekview.de/filmliste-v2.db.bz2# and unpack into searx/data/filmliste-v2.db# Query to test: "!demo concert"## - name: demo#   engine: sqlite#   shortcut: demo#   categories: general#   result_template: default.html#   database: searx/data/filmliste-v2.db#   query_str:  >-#     SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,#            COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,#            description AS content#       FROM film#      WHERE title LIKE :wildcard OR description LIKE :wildcard#      ORDER BY duration DESC- name: tagesschauengine: tagesschau# when set to false, display URLs from Tagesschau, and not the actual source# (e.g. NDR, WDR, SWR, HR, ...)use_source_url: trueshortcut: tsdisabled: true- name: tmdbengine: xpathpaging: truecategories: moviessearch_url: https://www.themoviedb.org/search?page={pageno}&query={query}results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]url_xpath: .//div[contains(@class,"poster")]/a/@hrefthumbnail_xpath: .//img/@srctitle_xpath: .//div[contains(@class,"title")]//h2content_xpath: .//div[contains(@class,"overview")]shortcut: tmdisabled: true# Requires Tor- name: torchengine: xpathpaging: truesearch_url:http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=andresults_xpath: //table//trurl_xpath: ./td[2]/atitle_xpath: ./td[2]/bcontent_xpath: ./td[2]/smallcategories: onionsenable_http: trueshortcut: tch# torznab engine lets you query any torznab compatible indexer.  Using this# engine in combination with Jackett opens the possibility to query a lot of# public and private indexers directly from SearXNG. More details at:# https://docs.searxng.org/dev/engines/online/torznab.html## - name: Torznab EZTV#   engine: torznab#   shortcut: eztv#   base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab#   enable_http: true  # if using localhost#   api_key: xxxxxxxxxxxxxxx#   show_magnet_links: true#   show_torrent_files: false#   # https://github.com/Jackett/Jackett/wiki/Jackett-Categories#   torznab_categories:  # optional#     - 2000#     - 5000# tmp suspended - too slow, too many errors#  - name: urbandictionary#    engine      : xpath#    search_url  : https://www.urbandictionary.com/define.php?term={query}#    url_xpath   : //*[@class="word"]/@href#    title_xpath : //*[@class="def-header"]#    content_xpath: //*[@class="meaning"]#    shortcut: ud- name: unsplashengine: unsplashshortcut: us- name: yandexengine: yandexcategories: generalsearch_type: webshortcut: yddisabled: trueinactive: true- name: yandex imagesengine: yandexcategories: imagessearch_type: imagesshortcut: ydidisabled: trueinactive: true- name: yandex musicengine: yandex_musicshortcut: ydmdisabled: true# https://yandex.com/support/music/access.htmlinactive: true- name: yahooengine: yahooshortcut: yhdisabled: true- name: yahoo newsengine: yahoo_newsshortcut: yhn- name: youtubeshortcut: yt# You can use the engine using the official stable API, but you need an API# key See: https://console.developers.google.com/project## engine: youtube_api# api_key: 'apikey' # required!## Or you can use the html non-stable engine, activated by defaultengine: youtube_noapi- name: dailymotionengine: dailymotionshortcut: dm- name: vimeoengine: vimeoshortcut: vm- name: wibyengine: json_enginepaging: truesearch_url: https://wiby.me/json/?q={query}&p={pageno}url_query: URLtitle_query: Titlecontent_query: Snippetcategories: [general, web]shortcut: wibdisabled: trueabout:website: https://wiby.me/- name: wikibooksengine: mediawikiweight: 0.5shortcut: wbcategories: [general, wikimedia]base_url: "https://{language}.wikibooks.org/"search_type: textdisabled: trueabout:website: https://www.wikibooks.org/wikidata_id: Q367- name: wikinewsengine: mediawikishortcut: wncategories: [news, wikimedia]base_url: "https://{language}.wikinews.org/"search_type: textsrsort: create_timestamp_descabout:website: https://www.wikinews.org/wikidata_id: Q964- name: wikiquoteengine: mediawikiweight: 0.5shortcut: wqcategories: [general, wikimedia]base_url: "https://{language}.wikiquote.org/"search_type: textdisabled: trueadditional_tests:rosebud: *test_rosebudabout:website: https://www.wikiquote.org/wikidata_id: Q369- name: wikisourceengine: mediawikiweight: 0.5shortcut: wscategories: [general, wikimedia]base_url: "https://{language}.wikisource.org/"search_type: textdisabled: trueabout:website: https://www.wikisource.org/wikidata_id: Q263- name: wikispeciesengine: mediawikishortcut: wspcategories: [general, science, wikimedia]base_url: "https://species.wikimedia.org/"search_type: textdisabled: trueabout:website: https://species.wikimedia.org/wikidata_id: Q13679tests:wikispecies:matrix:query: "Campbell, L.I. et al. 2011: MicroRNAs"lang: enresult_container:- not_empty- ['one_title_contains', 'Tardigrada']test:- unique_results- name: wiktionaryengine: mediawikishortcut: wtcategories: [dictionaries, wikimedia]base_url: "https://{language}.wiktionary.org/"search_type: textabout:website: https://www.wiktionary.org/wikidata_id: Q151- name: wikiversityengine: mediawikiweight: 0.5shortcut: wvcategories: [general, wikimedia]base_url: "https://{language}.wikiversity.org/"search_type: textdisabled: trueabout:website: https://www.wikiversity.org/wikidata_id: Q370- name: wikivoyageengine: mediawikiweight: 0.5shortcut: wycategories: [general, wikimedia]base_url: "https://{language}.wikivoyage.org/"search_type: textdisabled: trueabout:website: https://www.wikivoyage.org/wikidata_id: Q373- name: wikicommons.imagesengine: wikicommonsshortcut: wccategories: imagessearch_type: imagesnumber_of_results: 10- name: wikicommons.videosengine: wikicommonsshortcut: wcvcategories: videossearch_type: videosnumber_of_results: 10- name: wikicommons.audioengine: wikicommonsshortcut: wcacategories: musicsearch_type: audionumber_of_results: 10- name: wikicommons.filesengine: wikicommonsshortcut: wcfcategories: filessearch_type: filesnumber_of_results: 10- name: wolframalphashortcut: wa# You can use the engine using the official stable API, but you need an API# key.  See: https://products.wolframalpha.com/api/## engine: wolframalpha_api# api_key: ''## Or you can use the html non-stable engine, activated by defaultengine: wolframalpha_noapitimeout: 6.0categories: generaldisabled: true- name: dictzoneengine: dictzoneshortcut: dc- name: mymemory translatedengine: translatedshortcut: tltimeout: 5.0# You can use without an API key, but you are limited to 1000 words/day# See: https://mymemory.translated.net/doc/usagelimits.php# api_key: ''# Required dependency: mysql-connector-python#  - name: mysql#    engine: mysql_server#    database: mydatabase#    username: user#    password: pass#    limit: 10#    query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'#    shortcut: mysql# Required dependency: mariadb#  - name: mariadb#    engine: mariadb_server#    database: mydatabase#    username: user#    password: pass#    limit: 10#    query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'#    shortcut: mdb- name: 1337xengine: 1337xshortcut: 1337xdisabled: true- name: dudenengine: dudenshortcut: dudisabled: true- name: seznamshortcut: sznengine: seznamdisabled: true# - name: deepl#   engine: deepl#   shortcut: dpl#   # You can use the engine using the official stable API, but you need an API key#   # See: https://www.deepl.com/pro-api?cta=header-pro-api#   api_key: ''  # required!#   timeout: 5.0#   disabled: true- name: mojeekshortcut: mjkengine: mojeekcategories: [general, web]disabled: true- name: mojeek imagesshortcut: mjkimgengine: mojeekcategories: [images, web]search_type: imagespaging: falsedisabled: true- name: mojeek newsshortcut: mjknewsengine: mojeekcategories: [news, web]search_type: newspaging: falsedisabled: true- name: moviepilotengine: moviepilotshortcut: mpdisabled: true- name: navershortcut: nvrcategories: [general, web]engine: xpathpaging: truesearch_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}url_xpath: //a[@class="link_tit"]/@hreftitle_xpath: //a[@class="link_tit"]content_xpath: //div[@class="total_dsc_wrap"]/afirst_page_num: 1page_size: 10disabled: trueabout:website: https://www.naver.com/wikidata_id: Q485639official_api_documentation: https://developers.naver.com/docs/nmt/examples/use_official_api: falserequire_api_key: falseresults: HTMLlanguage: ko- name: rubygemsshortcut: rbgengine: xpathpaging: truesearch_url: https://rubygems.org/search?page={pageno}&query={query}results_xpath: /html/body/main/div/a[@class="gems__gem"]url_xpath: ./@hreftitle_xpath: ./span/h2content_xpath: ./span/psuggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/afirst_page_num: 1categories: [it, packages]disabled: trueabout:website: https://rubygems.org/wikidata_id: Q1853420official_api_documentation: https://guides.rubygems.org/rubygems-org-api/use_official_api: falserequire_api_key: falseresults: HTML- name: peertubeengine: peertubeshortcut: ptbpaging: true# alternatives see: https://instances.joinpeertube.org/instances# base_url: https://tube.4aem.comcategories: videosdisabled: truetimeout: 6.0- name: mediathekviewwebengine: mediathekviewwebshortcut: mvwdisabled: true- name: yacy# https://docs.searxng.org/dev/engines/online/yacy.htmlengine: yacycategories: generalsearch_type: textbase_url:- https://yacy.searchlab.eu# see https://github.com/searxng/searxng/pull/3631#issuecomment-2240903027# - https://search.kyun.li# - https://yacy.securecomcorp.eu# - https://yacy.myserv.ca# - https://yacy.nsupdate.info# - https://yacy.electroncash.deshortcut: yadisabled: true# if you aren't using HTTPS for your local yacy instance disable https# enable_http: falsesearch_mode: 'global'# timeout can be reduced in 'local' search modetimeout: 5.0- name: yacy imagesengine: yacynetwork: yacycategories: imagessearch_type: imageshortcut: yaidisabled: true# timeout can be reduced in 'local' search modetimeout: 5.0- name: rumbleengine: rumbleshortcut: rubase_url: https://rumble.com/paging: truecategories: videosdisabled: true- name: livespaceengine: livespaceshortcut: lscategories: videosdisabled: truetimeout: 5.0- name: wordnikengine: wordnikshortcut: defcategories: [dictionaries]timeout: 5.0- name: woxikon.de synonymeengine: xpathshortcut: woxicategories: [dictionaries]timeout: 5.0disabled: truesearch_url: https://synonyme.woxikon.de/synonyme/{query}.phpurl_xpath: //div[@class="upper-synonyms"]/a/@hrefcontent_xpath: //div[@class="synonyms-list-group"]title_xpath: //div[@class="upper-synonyms"]/ano_result_for_http_status: [404]about:website: https://www.woxikon.de/wikidata_id:  # No Wikidata IDuse_official_api: falserequire_api_key: falseresults: HTMLlanguage: de- name: seekr newsengine: seekrshortcut: senewscategories: newsseekr_category: newsdisabled: true- name: seekr imagesengine: seekrnetwork: seekr newsshortcut: seimgcategories: imagesseekr_category: imagesdisabled: true- name: seekr videosengine: seekrnetwork: seekr newsshortcut: sevidcategories: videosseekr_category: videosdisabled: true- name: stractengine: stractshortcut: strdisabled: true- name: svgrepoengine: svgreposhortcut: svgtimeout: 10.0disabled: true- name: tootfinderengine: tootfindershortcut: toot- name: voidlinuxengine: voidlinuxshortcut: voiddisabled: true- name: wallhavenengine: wallhaven# api_key: abcdefghijklmnopqrstuvwxyzshortcut: wh# wikimini: online encyclopedia for children# The fulltext and title parameter is necessary for Wikimini because# sometimes it will not show the results and redirect instead- name: wikiminiengine: xpathshortcut: wkmnsearch_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Searchurl_xpath: //li/div[@class="mw-search-result-heading"]/a/@hreftitle_xpath: //li//div[@class="mw-search-result-heading"]/acontent_xpath: //li/div[@class="searchresult"]categories: generaldisabled: trueabout:website: https://wikimini.org/wikidata_id: Q3568032use_official_api: falserequire_api_key: falseresults: HTMLlanguage: fr- name: wttr.inengine: wttrshortcut: wttrtimeout: 9.0- name: yummlyengine: yummlyshortcut: yumdisabled: true- name: braveengine: braveshortcut: brtime_range_support: truepaging: truecategories: [general, web]brave_category: search# brave_spellcheck: true- name: brave.imagesengine: bravenetwork: braveshortcut: brimgcategories: [images, web]brave_category: images- name: brave.videosengine: bravenetwork: braveshortcut: brvidcategories: [videos, web]brave_category: videos- name: brave.newsengine: bravenetwork: braveshortcut: brnewscategories: newsbrave_category: news# - name: brave.goggles#   engine: brave#   network: brave#   shortcut: brgog#   time_range_support: true#   paging: true#   categories: [general, web]#   brave_category: goggles#   Goggles: # required! This should be a URL ending in .goggle- name: lib.rsshortcut: lrsengine: lib_rsdisabled: true- name: sourcehutshortcut: srhtengine: xpathpaging: truesearch_url: https://sr.ht/projects?page={pageno}&search={query}results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]url_xpath: ./h4/a[2]/@hreftitle_xpath: ./h4/a[2]content_xpath: ./pfirst_page_num: 1categories: [it, repos]disabled: trueabout:website: https://sr.htwikidata_id: Q78514485official_api_documentation: https://man.sr.ht/use_official_api: falserequire_api_key: falseresults: HTML- name: gooshortcut: gooengine: xpathpaging: truesearch_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@hreftitle_xpath: //div[@class="result"]/p[@class='title fsL1']/acontent_xpath: //p[contains(@class,'url fsM')]/following-sibling::pfirst_page_num: 0categories: [general, web]disabled: truetimeout: 4.0about:website: https://search.goo.ne.jpwikidata_id: Q249044use_official_api: falserequire_api_key: falseresults: HTMLlanguage: ja- name: bt4gengine: bt4gshortcut: bt4g- name: pkg.go.devengine: pkg_go_devshortcut: pgodisabled: true# Doku engine lets you access to any Doku wiki instance:
# A public one or a privete/corporate one.
#  - name: ubuntuwiki
#    engine: doku
#    shortcut: uw
#    base_url: 'https://doc.ubuntu-fr.org'# Be careful when enabling this engine if you are
# running a public instance. Do not expose any sensitive
# information. You can restrict access by configuring a list
# of access tokens under tokens.
#  - name: git grep
#    engine: command
#    command: ['git', 'grep', '{{QUERY}}']
#    shortcut: gg
#    tokens: []
#    disabled: true
#    delimiter:
#        chars: ':'
#        keys: ['filepath', 'code']# Be careful when enabling this engine if you are
# running a public instance. Do not expose any sensitive
# information. You can restrict access by configuring a list
# of access tokens under tokens.
#  - name: locate
#    engine: command
#    command: ['locate', '{{QUERY}}']
#    shortcut: loc
#    tokens: []
#    disabled: true
#    delimiter:
#        chars: ' '
#        keys: ['line']# Be careful when enabling this engine if you are
# running a public instance. Do not expose any sensitive
# information. You can restrict access by configuring a list
# of access tokens under tokens.
#  - name: find
#    engine: command
#    command: ['find', '.', '-name', '{{QUERY}}']
#    query_type: path
#    shortcut: fnd
#    tokens: []
#    disabled: true
#    delimiter:
#        chars: ' '
#        keys: ['line']# Be careful when enabling this engine if you are
# running a public instance. Do not expose any sensitive
# information. You can restrict access by configuring a list
# of access tokens under tokens.
#  - name: pattern search in files
#    engine: command
#    command: ['fgrep', '{{QUERY}}']
#    shortcut: fgr
#    tokens: []
#    disabled: true
#    delimiter:
#        chars: ' '
#        keys: ['line']# Be careful when enabling this engine if you are
# running a public instance. Do not expose any sensitive
# information. You can restrict access by configuring a list
# of access tokens under tokens.
#  - name: regex search in files
#    engine: command
#    command: ['grep', '{{QUERY}}']
#    shortcut: gr
#    tokens: []
#    disabled: true
#    delimiter:
#        chars: ' '
#        keys: ['line']doi_resolvers:oadoi.org: 'https://oadoi.org/'doi.org: 'https://doi.org/'doai.io: 'https://dissem.in/'sci-hub.se: 'https://sci-hub.se/'sci-hub.st: 'https://sci-hub.st/'sci-hub.ru: 'https://sci-hub.ru/'default_doi_resolver: 'oadoi.org'

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/27173.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++-第十九章:异常

目录 第一节&#xff1a;异常有哪些 第二节&#xff1a;异常相关关键字 2-1.抛出异常 2-2.捕获异常 2-3.异常的捕获规则 2-3-1.异常被最近的catch捕获 2-3-2.catch捕获的是异常的拷贝 2-3-3.异常为子类时&#xff0c;可以用父类引用接收 2-4.捕获任意异常 第三节&#xff1…

Redis详解(实战 + 面试)

目录 Redis 是单线程的&#xff01;为什么 Redis-Key(操作redis的key命令) String 扩展字符串操作命令 数字增长命令 字符串范围range命令 设置过期时间命令 批量设置值 string设置对象,但最好使用hash来存储对象 组合命令getset,先get然后在set Hash hash命令: h…

‘ts-node‘ 不是内部或外部命令,也不是可运行的程序

新建一个test.ts文件 let message: string = Hello World; console.log(message);如果没有任何配置的前提下,会报错’ts-node’ 不是内部或外部命令,也不是可运行的程序。 此时需要安装一下ts-node。 npm install

(十 五)趣学设计模式 之 命令模式!

目录 一、 啥是命令模式&#xff1f;二、 为什么要用命令模式&#xff1f;三、 策略模式的实现方式四、 命令模式的优缺点五、 命令模式的应用场景六、 总结 &#x1f31f;我的其他文章也讲解的比较有趣&#x1f601;&#xff0c;如果喜欢博主的讲解方式&#xff0c;可以多多支…

基于单片机的智能扫地机器人

1 电路设计 1.1 电源电路 本电源采用两块LM7805作为稳压电源&#xff0c;一块为控制电路和传感器电路供电&#xff0c;另一块单独为电机供电。分开供电这样做的好处&#xff0c;有利于减小干扰&#xff0c;提高系统稳定性。 LM7805是常用的三端稳压器件&#xff0c;顾名思义0…

【Redis学习】Redis Docker安装,自定义config文件(包括RDB\AOF setup)以及与Spring Boot项目集成

【本文内容】 第1章&#xff1a;通过Docker安装Redis&#xff0c;并自定义config文件以及mount data目录。第2章&#xff1a;介绍Redis持久化到磁盘&#xff0c;有4种方式&#xff1a;RDB / AOF / NONE / RDB AOF。第3章&#xff1a;使用Server自带的redis-cli工具连接。第4章…

【3天快速入门WPF】13-MVVM进阶

目录 1. 窗体设置2. 字体图标3. 控件模板4. 页面逻辑4.1. 不使用MVVM4.2. MVVM模式实现本篇我们开发一个基于MVVM的登录页面,用来回顾下之前学习的内容 登录页面如下: 窗体取消了默认的标题栏,调整为带阴影的圆角窗体,左侧放一张登录背景图,右边自绘了一个关闭按钮,文本框…

PHP实现登录和注册(附源码)

前言 本博客主要讲述利用php环境实现一个简单的前后端结合的用户登录和注册功能。phpstudy是PHP调试环境的集成包&#xff0c;该程序包集成了 ApachePHPMySQLphpMyAdmin 等多个工具&#xff0c;是很好用的调试环境的程序集成包。 目录 前言 1. 准备工作 1.1 工具 1.2 php…

Redis数据结构-List列表

1.List列表 列表类型适用于存储多个有序的字符串&#xff08;这里的有序指的是强调数据排列顺序的重要&#xff0c;不是升序降序的意思&#xff09;&#xff0c;列表中的每个字符串称为元素&#xff08;element&#xff09;&#xff0c;一个列表最多可以存储2^32-1个元素。在R…

Redis 实战篇 ——《黑马点评》(下)

《引言》 &#xff08;下&#xff09;篇将记录 Redis 实战篇 最后的一些学习内容&#xff0c;希望大家能够点赞、收藏支持一下 Thanks♪ (&#xff65;ω&#xff65;)&#xff89;&#xff0c;谢谢大家。 传送门&#xff08;上&#xff09;&#xff1a;Redis 实战篇 ——《黑马…

WordPress二次开发实现用户注册审核功能

WordPress默认直接注册登录了&#xff0c;不需要任何验证&#xff0c;如果被批量注册就麻烦了&#xff0c;所以添加一个审核功能比较好。 注册用户默认需要手动审核&#xff0c;审核以后才能登陆&#xff0c;开启审核&#xff0c;可以有效防止用户批量注册。 这儿讲解一下如何…

基于SpringBoot的“青少年心理健康教育网站”的设计与实现(源码+数据库+文档+PPT)

基于SpringBoot的“青少年心理健康教育网站”的设计与实现&#xff08;源码数据库文档PPT) 开发语言&#xff1a;Java 数据库&#xff1a;MySQL 技术&#xff1a;SpringBoot 工具&#xff1a;IDEA/Ecilpse、Navicat、Maven 系统展示 系统总体结构图 实体属性图 系统首页界…

湖仓一体概述

湖仓一体之前&#xff0c;数据分析经历了数据库、数据仓库和数据湖分析三个时代。 首先是数据库&#xff0c;它是一个最基础的概念&#xff0c;主要负责联机事务处理&#xff0c;也提供基本的数据分析能力。 随着数据量的增长&#xff0c;出现了数据仓库&#xff0c;它存储的是…

React:B站评论demo,实现列表渲染、删除按钮显示和功能实现、导航栏渲染切换及高亮显示、评论区的排序

功能要求&#xff1a; 1、渲染评论列表 2、删除评论功能&#xff1a;只显示自己评论的删除按钮&#xff1b;点击删除按钮&#xff0c;删除当前评论&#xff0c;列表中不再显示。 3、渲染导航Tab&#xff08;最新 | 最热&#xff09;和其 高亮实现 4、评论排序功能实现&…

springboot系列教程(三十一):springboot整合Nacos组件,环境搭建和入门案例详解

一、Nacos基础简介 1、概念简介 Nacos 是构建以“服务”为中心的现代应用架构&#xff0c;如微服务范式、云原生范式等服务基础设施。聚焦于发现、配置和管理微服务。Nacos提供一组简单易用的特性集&#xff0c;帮助开发者快速实现动态服务发现、服务配置、服务元数据及流量管…

python爬虫报错信息解决方法

今天遇到了这样一条报错&#xff1a; opt/conda/envs/python35-paddle120-env/bin/python /home/aistudio/work/main.py aistudiojupyter-10415006-8838159:~$ /opt/conda/envs/python35-paddle120-env/bin/python /home/aistudio/work/main.py Traceback (most recent call la…

如何快速的解除oracle dataguard

有些时候&#xff0c;我们为了使oracle dg的standby库另做他用&#xff0c;需要解除oracle dataguard数据同步。我本地因为standby库存储出现故障&#xff0c;导致dg存在问题&#xff0c;故需要解除。今天&#xff0c;我们通过使用部分命令&#xff0c;实现dg的快速解除。 1&a…

【告别双日期面板!一招实现el-date-picker智能联动日期选择】

告别双日期面板&#xff01;一招实现el-date-picker智能联动日期选择 1.需求背景2.DateTimePicker 现状图3.日期选择器实现代码4.日期选择器实现效果图5.日期时间选择器实现代码6.日期时间选择器实现效果图 1.需求背景 在用户使用时间查询时&#xff0c;我们经常需要按月份筛选…

Git GitHub基础

git是什么&#xff1f; Git是一个分布式版本控制系统&#xff0c;用于管理源代码的变更。它允许多个开发者在同一个项目上协作&#xff0c;同时跟踪每个修改的历史记录。 关键词&#xff1a; 分布式版本控制软件 软件 安装到我们电脑上的一个工具 版本控制 例如论文&…

汽车无人驾驶系统中的防撞设计

一、系统方案介绍 无人驾驶汽车的防撞系统是保障行车安全的核心模块&#xff0c;本文设计的系统以STM32F103C8T6单片机为主控制器&#xff0c;结合超声波测距、WiFi通信、人机交互等模块&#xff0c;实现障碍物实时检测、动态阈值设置、多级报警和数据可视化功能。系统通过软…