|
@@ -174,11 +174,11 @@ SCHEMA = {
|
|
|
'server': {
|
|
|
'port': SettingsValue((int, str), 8888, 'SEARXNG_PORT'),
|
|
|
'bind_address': SettingsValue(str, '127.0.0.1', 'SEARXNG_BIND_ADDRESS'),
|
|
|
- 'limiter': SettingsValue(bool, False),
|
|
|
- 'public_instance': SettingsValue(bool, False),
|
|
|
+ 'limiter': SettingsValue(bool, False, 'SEARXNG_LIMITER'),
|
|
|
+ 'public_instance': SettingsValue(bool, False, 'SEARXNG_PUBLIC_INSTANCE'),
|
|
|
'secret_key': SettingsValue(str, environ_name='SEARXNG_SECRET'),
|
|
|
'base_url': SettingsValue((False, str), False, 'SEARXNG_BASE_URL'),
|
|
|
- 'image_proxy': SettingsValue(bool, False),
|
|
|
+ 'image_proxy': SettingsValue(bool, False, 'SEARXNG_IMAGE_PROXY'),
|
|
|
'http_protocol_version': SettingsValue(('1.0', '1.1'), '1.0'),
|
|
|
'method': SettingsValue(('POST', 'GET'), 'POST'),
|
|
|
'default_http_headers': SettingsValue(dict, {}),
|
|
@@ -188,7 +188,7 @@ SCHEMA = {
|
|
|
},
|
|
|
'ui': {
|
|
|
'static_path': SettingsDirectoryValue(str, os.path.join(searx_dir, 'static')),
|
|
|
- 'static_use_hash': SettingsValue(bool, False),
|
|
|
+ 'static_use_hash': SettingsValue(bool, False, 'SEARXNG_STATIC_USE_HASH'),
|
|
|
'templates_path': SettingsDirectoryValue(str, os.path.join(searx_dir, 'templates')),
|
|
|
'default_theme': SettingsValue(str, 'simple'),
|
|
|
'default_locale': SettingsValue(str, ''),
|