2017-05-12 18:51:49 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
DEBUG = True
|
2017-10-04 23:05:35 +00:00
|
|
|
|
|
|
|
######################
|
|
|
|
## Maintenance mode ##
|
|
|
|
######################
|
|
|
|
|
2017-09-04 22:16:52 +00:00
|
|
|
# A read-only maintenance mode, in which the database is not modified
|
2017-10-04 23:05:35 +00:00
|
|
|
MAINTENANCE_MODE = False
|
2017-09-04 22:16:52 +00:00
|
|
|
# A maintenance message (used in layout.html template)
|
|
|
|
MAINTENANCE_MODE_MESSAGE = 'Site is currently in read-only maintenance mode.'
|
|
|
|
# Allow logging in during maintenance (without updating last login date)
|
|
|
|
MAINTENANCE_MODE_LOGINS = True
|
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
#############
|
|
|
|
## General ##
|
|
|
|
#############
|
|
|
|
|
|
|
|
# What the site identifies itself as. This affects templates, not database stuff.
|
|
|
|
SITE_NAME = 'Nyaa'
|
2017-10-08 00:31:32 +00:00
|
|
|
# What the both sites are labeled under (used for eg. email subjects)
|
|
|
|
GLOBAL_SITE_NAME = 'Nyaa.si'
|
2017-10-04 23:05:35 +00:00
|
|
|
|
|
|
|
# General prefix for running multiple sites, eg. most database tables are site-prefixed
|
|
|
|
SITE_FLAVOR = 'nyaa' # 'nyaa' or 'sukebei'
|
|
|
|
# Full external urls to both sites, used for site-change links
|
|
|
|
EXTERNAL_URLS = {'fap':'***', 'main':'***'}
|
|
|
|
|
|
|
|
# Secret keys for Flask
|
|
|
|
CSRF_SESSION_KEY = '***'
|
|
|
|
SECRET_KEY = '***'
|
|
|
|
|
|
|
|
# Present a recaptcha for anonymous uploaders
|
2017-05-12 18:51:49 +00:00
|
|
|
USE_RECAPTCHA = False
|
2017-10-04 23:05:35 +00:00
|
|
|
# Require email validation
|
2017-05-12 18:51:49 +00:00
|
|
|
USE_EMAIL_VERIFICATION = False
|
2017-10-04 23:05:35 +00:00
|
|
|
# Use MySQL or Sqlite3 (mostly deprecated)
|
2017-05-12 18:51:49 +00:00
|
|
|
USE_MYSQL = True
|
2017-10-04 23:05:35 +00:00
|
|
|
# Show seeds/peers/completions in torrent list/page
|
2017-05-27 23:15:39 +00:00
|
|
|
ENABLE_SHOW_STATS = True
|
2017-05-12 18:51:49 +00:00
|
|
|
|
2017-10-08 01:34:40 +00:00
|
|
|
# Enable password recovery (by reset link to given email address)
|
|
|
|
# Depends on email support!
|
|
|
|
ALLOW_PASSWORD_RESET = True
|
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
# Recaptcha keys (https://www.google.com/recaptcha)
|
|
|
|
RECAPTCHA_PUBLIC_KEY = '***'
|
|
|
|
RECAPTCHA_PRIVATE_KEY = '***'
|
|
|
|
|
2017-05-12 18:51:49 +00:00
|
|
|
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
if USE_MYSQL:
|
2017-05-22 22:46:26 +00:00
|
|
|
SQLALCHEMY_DATABASE_URI = ('mysql://test:test123@localhost/nyaav2?charset=utf8mb4')
|
2017-05-12 18:51:49 +00:00
|
|
|
else:
|
|
|
|
SQLALCHEMY_DATABASE_URI = (
|
|
|
|
'sqlite:///' + os.path.join(BASE_DIR, 'test.db') + '?check_same_thread=False')
|
|
|
|
|
2017-10-08 00:31:32 +00:00
|
|
|
###########
|
|
|
|
## EMAIL ##
|
|
|
|
###########
|
|
|
|
|
|
|
|
# 'smtp' or 'mailgun'
|
|
|
|
MAIL_BACKEND = 'mailgun'
|
|
|
|
MAIL_FROM_ADDRESS = 'Sender Name <sender@domain.com>'
|
|
|
|
|
|
|
|
# Mailgun settings
|
|
|
|
MAILGUN_API_BASE = 'https://api.mailgun.net/v3/YOUR_DOMAIN_NAME'
|
|
|
|
MAILGUN_API_KEY = 'YOUR_API_KEY'
|
|
|
|
|
|
|
|
# SMTP settings
|
2017-05-12 18:51:49 +00:00
|
|
|
SMTP_SERVER = '***'
|
|
|
|
SMTP_PORT = 587
|
|
|
|
SMTP_USERNAME = '***'
|
|
|
|
SMTP_PASSWORD = '***'
|
|
|
|
|
2017-10-08 00:31:32 +00:00
|
|
|
|
2017-05-12 18:51:49 +00:00
|
|
|
# The maximum number of files a torrent can contain
|
|
|
|
# until the site says "Too many files to display."
|
|
|
|
MAX_FILES_VIEW = 1000
|
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
# Verify uploaded torrents have the given tracker in them?
|
2017-05-12 18:51:49 +00:00
|
|
|
ENFORCE_MAIN_ANNOUNCE_URL = False
|
2017-08-06 21:55:45 +00:00
|
|
|
MAIN_ANNOUNCE_URL = 'http://127.0.0.1:6881/announce'
|
2017-10-04 23:05:35 +00:00
|
|
|
|
|
|
|
# Tracker API integration - don't mind this
|
2017-08-06 21:55:45 +00:00
|
|
|
TRACKER_API_URL = 'http://127.0.0.1:6881/api'
|
|
|
|
TRACKER_API_AUTH = 'topsecret'
|
2017-10-04 23:05:35 +00:00
|
|
|
|
|
|
|
#############
|
|
|
|
## Account ##
|
|
|
|
#############
|
|
|
|
|
2017-08-20 00:48:08 +00:00
|
|
|
# Torrents uploaded without an account must be at least this big in total (bytes)
|
|
|
|
# Set to 0 to disable
|
|
|
|
MINIMUM_ANONYMOUS_TORRENT_SIZE = 1 * 1024 * 1024
|
2017-05-12 18:51:49 +00:00
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
# Minimum age for an account not to be served a captcha (seconds)
|
|
|
|
# Relies on USE_RECAPTCHA. Set to 0 to disable.
|
|
|
|
ACCOUNT_RECAPTCHA_AGE = 7 * 24 * 3600 # A week
|
|
|
|
|
|
|
|
# Backup original .torrent uploads
|
2017-05-12 18:51:49 +00:00
|
|
|
BACKUP_TORRENT_FOLDER = 'torrents'
|
2017-05-16 06:51:58 +00:00
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
############
|
|
|
|
## Search ##
|
|
|
|
############
|
|
|
|
|
|
|
|
# How many results should a page contain. Applies to RSS as well.
|
2017-05-16 06:51:58 +00:00
|
|
|
RESULTS_PER_PAGE = 75
|
|
|
|
|
2017-10-04 23:05:35 +00:00
|
|
|
# Use better searching with ElasticSearch
|
|
|
|
# See README.MD on setup!
|
2017-05-16 06:51:58 +00:00
|
|
|
USE_ELASTIC_SEARCH = False
|
2017-10-04 23:05:35 +00:00
|
|
|
# Highlight matches (for debugging)
|
2017-05-16 06:51:58 +00:00
|
|
|
ENABLE_ELASTIC_SEARCH_HIGHLIGHT = False
|
2017-10-04 23:05:35 +00:00
|
|
|
|
2017-05-27 23:15:39 +00:00
|
|
|
# Max ES search results, do not set over 10000
|
2017-05-16 06:51:58 +00:00
|
|
|
ES_MAX_SEARCH_RESULT = 1000
|
2017-10-04 23:05:35 +00:00
|
|
|
# ES index name generally (nyaa or sukebei)
|
|
|
|
ES_INDEX_NAME = SITE_FLAVOR
|