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

Update searxng/settings.yml

Browse files
Files changed (1) hide show
  1. searxng/settings.yml +92 -4
searxng/settings.yml CHANGED
@@ -1,19 +1,107 @@
1
- # see https://docs.searxng.org/admin/settings/settings.html#settings-use-default-settings
 
 
 
 
 
 
 
2
  use_default_settings: true
 
 
3
  search:
 
 
 
4
  autocomplete: "duckduckgo"
 
5
  formats:
6
  - html
7
  - json
 
 
8
  server:
 
 
9
  # base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml
10
- secret_key: "%(ENV_SEARXNG_SECRET)s" # change this!
11
- limiter: true # can be disabled for a private instance
 
 
 
 
 
 
 
 
 
 
12
  image_proxy: true
 
 
13
  ui:
 
14
  static_use_hash: true
 
 
 
 
 
15
  engines:
 
16
  - name: pixiv
17
  disabled: false
18
  pixiv_image_proxies:
19
- - https://pximg.cocomi.eu.org
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SearXNG Settings File
2
+ #
3
+ # This file configures various aspects of your SearXNG instance.
4
+ # For more detailed documentation, please refer to:
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:
19
  - html
20
  - json
21
+
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.
29
+ # GENERATE A STRONG, UNIQUE KEY FOR PRODUCTION ENVIRONMENTS!
30
+ # You can generate one using: openssl rand -base64 32
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
42
  ui:
43
+ # If true, static files will have a hash in their URL for cache busting.
44
  static_use_hash: true
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
71
+ disabled: true
72
+ - name: wikisource
73
+ disabled: true
74
+ - name: wikispecies
75
+ disabled: true
76
+ - name: wikiversity
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
106
+ # appearance:
107
+ # theme: "os-default"