import os # # Example configuration file for a PostgreSQL database. # # Webserver HOST = "0.0.0.0" PORT = 5000 DEBUG = True API_ROOT = "/api/v2.0" CSRF_ENABLED = True SECRET_KEY = "LCx3BchmHRxFzkEv4BqQJyeXRLXenf" SECURITY_PASSWORD_SALT = "L8gTsyrpRQEF8jNWQPyvRfv7U5kJkD" # Database DB_CONFIG_DICT = { "user": "postgres", "password": "password", "host": "db", "port": 5432, } DATABASE_NAME = "postgres" SQLALCHEMY_DATABASE_URI = "postgresql://{user}:{password}@{host}:{port}/{name}".format( name=DATABASE_NAME, **DB_CONFIG_DICT ) # Security CONTENT_SECURITY_POLICY = { "default-src": "'self'", "img-src": "*", "media-src": [ "youtube.com", ], "script-src": [ "'self'", "'unsafe-inline'", ], "style-src": [ "'self'", "'unsafe-inline'", ], } # Crawler CRAWLING_METHOD = "default" DEFAULT_MAX_ERROR = 6 HTTP_PROXY = "" CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)" CRAWLER_TIMEOUT = 30 CRAWLER_RESOLVE_ARTICLE_URL = False FEED_REFRESH_INTERVAL = 120 # Notification MAIL_SERVER = "localhost" MAIL_PORT = 25 MAIL_USE_TLS = False MAIL_USE_SSL = False MAIL_DEBUG = DEBUG MAIL_USERNAME = None MAIL_PASSWORD = None MAIL_DEFAULT_SENDER = "admin@admin.localhost" TOKEN_VALIDITY_PERIOD = 3600 PLATFORM_URL = "https://www.newspipe.org" # Misc BASE_DIR = os.path.abspath(os.path.dirname(".")) LANGUAGES = {"en": "English", "fr": "French"} TIME_ZONE = {"en": "US/Eastern", "fr": "Europe/Paris"} ADMIN_EMAIL = "admin@admin.localhost" LOG_LEVEL = "info" LOG_PATH = "./var/newspipe.log" SELF_REGISTRATION = True # Ldap, optional LDAP_ENABLED = True LDAP_URI = "ldaps://ipa.internal.com:636" LDAP_USER_BASE = "cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_GROUP_BASE = "cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_USER_MATCH_ATTRIB = "uid" LDAP_USER_DISPLAY_ATTRIB = "uid" LDAP_USER_ATTRIB_MEMBEROF = "memberof" LDAP_GROUP_DISPLAY_ATTRIB = "cn" LDAP_BIND_DN = "uid=sampleuser,cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_BIND_PASSWORD = "examplepassword" # Additional filter to restrict user lookup. If not equivalent to False, will be logical-anded to the user-match-attribute search filter. LDAP_FILTER = "(memberOf=cn=newspipe-users,cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com)"