mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
e92755d358
settings.yml: * The default URL was unix:///usr/local/searxng-redis/run/redis.sock?db=0 * The default URL is now "false" The default URL makes the log difficult to deal with: if the admin didn't install a Redis instance, the logs record a false error. It worked before because SearXNG initialized the Redis connection when the limiter started. In this commit, SearXNG initializes Redis in searx/webapp.py so various components can use Redis without taking care of the initialization step.
35 lines
1019 B
Python
35 lines
1019 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# lint: pylint
|
|
"""Implement some checks in the active installation
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import logging
|
|
import warnings
|
|
|
|
LOG_FORMAT_DEBUG = '%(levelname)-7s %(name)-30.30s: %(message)s'
|
|
logging.basicConfig(level=logging.getLevelName('DEBUG'), format=LOG_FORMAT_DEBUG)
|
|
os.environ['SEARXNG_DEBUG'] = '1'
|
|
|
|
# from here on implement the checks of the installation
|
|
|
|
import searx
|
|
|
|
OLD_SETTING = '/etc/searx/settings.yml'
|
|
|
|
if os.path.isfile(OLD_SETTING):
|
|
msg = (
|
|
'%s is no longer valid, move setting to %s' % (
|
|
OLD_SETTING,
|
|
os.environ.get('SEARXNG_SETTINGS_PATH', '/etc/searxng/settings.yml')
|
|
))
|
|
warnings.warn(msg, DeprecationWarning)
|
|
|
|
from searx.shared import redisdb
|
|
from searx import get_setting
|
|
|
|
if not redisdb.initialize():
|
|
warnings.warn("can't connect to redis DB at: %s" % get_setting('redis.url'), RuntimeWarning, stacklevel=2)
|
|
warnings.warn("--> no bot protection without redis DB", RuntimeWarning, stacklevel=2)
|