This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Scale a value from one range to another | |
* Example of use: | |
* | |
* // Convert 33 from a 0-100 range to a 0-65535 range | |
* var n = scaleValue(33, [0,100], [0,65535]); | |
* | |
* // Ranges don't have to be positive | |
* var n = scaleValue(0, [-50,+50], [0,65535]); | |
* | |
* Ranges are defined as arrays of two values, inclusive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see https://docs.searxng.org/admin/engines/settings.html#use-default-settings | |
use_default_settings: true | |
general: | |
instance_name: "instance_name" | |
server: | |
# base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml | |
secret_key: "ultrasecretkey" # change this! | |
limiter: true # can be disabled for a private instance | |
image_proxy: true | |
ui: |