adowu commited on
Commit
d27c232
·
verified ·
1 Parent(s): fce7bb9

Update searxng/settings.yml

Browse files
Files changed (1) hide show
  1. searxng/settings.yml +32 -23
searxng/settings.yml CHANGED
@@ -5,14 +5,14 @@
5
  # https://docs.searxng.org/admin/settings/settings.html
6
 
7
  # Use default settings provided by SearXNG.
8
- # Set to 'false' if you want to explicitly define every engine and other settings.
 
9
  use_default_settings: true
10
 
11
  # Search related settings
12
  search:
13
  # Autocomplete engine to use. Can be "duckduckgo", "google", "bing", etc., or "none" to disable.
14
- # Note: If you disable 'duckduckgo' search engine below, you might want to change this to "none"
15
- # or another available autocomplete engine if you don't use duckduckgo at all.
16
  autocomplete: "duckduckgo"
17
  # Output formats available.
18
  formats:
@@ -22,7 +22,6 @@ search:
22
  # Server related settings
23
  server:
24
  # The base URL of your SearXNG instance. This is often set via environment variables.
25
- # Example: base_url: "https://searxng.example.com/"
26
  # base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml
27
 
28
  # A secret key used for session management and security.
@@ -31,11 +30,9 @@ server:
31
  secret_key: "%(ENV_SEARXNG_SECRET)s" # !! CHANGE THIS IN PRODUCTION !!
32
 
33
  # Enable or disable rate limiting to prevent abuse.
34
- # Can be disabled for private instances where you trust your users.
35
  limiter: true
36
 
37
  # Enable or disable the image proxy.
38
- # The image proxy rewrites image URLs to go through SearXNG, preserving user privacy.
39
  image_proxy: true
40
 
41
  # User Interface (UI) related settings
@@ -45,26 +42,19 @@ ui:
45
 
46
  # Engines configuration
47
  # This section allows you to override default engine settings or add custom engines.
48
- # If 'use_default_settings' is true, engines listed here will override or disable
49
- # the default ones if their 'name' matches.
50
  engines:
51
- # Your custom pixiv engine configuration (kept enabled as requested initially)
52
  - name: pixiv
53
  disabled: false
54
  pixiv_image_proxies:
55
  - https://pximg.cocomi.eu.org
56
 
57
- # Engines to be explicitly disabled, including those newly requested.
58
- # These settings override the default 'enabled' state due to 'use_default_settings: true'.
59
- # Web Search Engines
60
- - name: bing
61
- disabled: true
62
- - name: google
63
- disabled: true
64
- - name: duckduckgo
65
- disabled: true
66
 
67
- # Wikimedia and Wikipedia related engines
68
  - name: wikibooks
69
  disabled: true
70
  - name: wikiquote
@@ -77,29 +67,48 @@ engines:
77
  disabled: true
78
  - name: wikivoyage
79
  disabled: true
 
 
80
  - name: wikidata
81
  disabled: true
82
  - name: wikipedia
83
  disabled: true
 
 
 
 
84
  - name: wikinews
85
  disabled: true
 
 
86
  - name: wikicommons.images
87
  disabled: true
 
 
88
  - name: wikicommons.videos
89
  disabled: true
 
 
90
  - name: wikicommons.audio
91
  disabled: true
92
- - name: free software directory
93
- disabled: true
94
  - name: arch linux wiki
95
  disabled: true
 
 
96
  - name: gentoo
97
  disabled: true
98
  - name: nixos wiki
99
  disabled: true
100
 
101
- # You can add other global settings here if you disable 'use_default_settings'
102
- # or if you want to override specific global defaults.
 
 
 
 
 
103
  # For example:
104
  # results:
105
  # standard_open_in_new_tab: true
 
5
  # https://docs.searxng.org/admin/settings/settings.html
6
 
7
  # Use default settings provided by SearXNG.
8
+ # This means all engines and settings that are enabled by default in SearXNG
9
+ # will be active, unless explicitly overridden below.
10
  use_default_settings: true
11
 
12
  # Search related settings
13
  search:
14
  # Autocomplete engine to use. Can be "duckduckgo", "google", "bing", etc., or "none" to disable.
15
+ # Keeping duckduckgo here for autocomplete, even if its search engine is enabled/disabled by default.
 
16
  autocomplete: "duckduckgo"
17
  # Output formats available.
18
  formats:
 
22
  # Server related settings
23
  server:
24
  # The base URL of your SearXNG instance. This is often set via environment variables.
 
25
  # base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml
26
 
27
  # A secret key used for session management and security.
 
30
  secret_key: "%(ENV_SEARXNG_SECRET)s" # !! CHANGE THIS IN PRODUCTION !!
31
 
32
  # Enable or disable rate limiting to prevent abuse.
 
33
  limiter: true
34
 
35
  # Enable or disable the image proxy.
 
36
  image_proxy: true
37
 
38
  # User Interface (UI) related settings
 
42
 
43
  # Engines configuration
44
  # This section allows you to override default engine settings or add custom engines.
45
+ # Since 'use_default_settings' is true, we only need to list engines we want to DISABLE
46
+ # or explicitly ENABLE if they are NOT enabled by default (though the latter is less common).
47
  engines:
48
+ # Custom pixiv engine (kept enabled as it was specifically requested)
49
  - name: pixiv
50
  disabled: false
51
  pixiv_image_proxies:
52
  - https://pximg.cocomi.eu.org
53
 
54
+ # BEGIN: List of Wiki-related engines to be explicitly DISABLED, as requested.
55
+ # These override the default 'enabled' state.
 
 
 
 
 
 
 
56
 
57
+ # From !general -> !wikimedia
58
  - name: wikibooks
59
  disabled: true
60
  - name: wikiquote
 
67
  disabled: true
68
  - name: wikivoyage
69
  disabled: true
70
+
71
+ # From !general -> without further subgrouping
72
  - name: wikidata
73
  disabled: true
74
  - name: wikipedia
75
  disabled: true
76
+ - name: wikimini (FR) # Found in general without subgrouping
77
+ disabled: true
78
+
79
+ # From !news -> !wikimedia
80
  - name: wikinews
81
  disabled: true
82
+
83
+ # From !images -> without further subgrouping
84
  - name: wikicommons.images
85
  disabled: true
86
+
87
+ # From !videos -> without further subgrouping
88
  - name: wikicommons.videos
89
  disabled: true
90
+
91
+ # From !music -> without further subgrouping
92
  - name: wikicommons.audio
93
  disabled: true
94
+
95
+ # From !it -> !software_wikis
96
  - name: arch linux wiki
97
  disabled: true
98
+ - name: free software directory
99
+ disabled: true
100
  - name: gentoo
101
  disabled: true
102
  - name: nixos wiki
103
  disabled: true
104
 
105
+ # From !files -> without further subgrouping
106
+ - name: wikicommons.files
107
+ disabled: true
108
+
109
+ # END: List of Wiki-related engines to be explicitly DISABLED.
110
+
111
+ # You can add other global settings here if you want to override specific global defaults.
112
  # For example:
113
  # results:
114
  # standard_open_in_new_tab: true