regluit/settings/just.py

141 lines
3.7 KiB
Python
Raw Normal View History

2016-12-20 19:43:16 +00:00
# coding=utf-8
from .common import *
try:
from .keys.host import *
except ImportError:
from .dummy.host import *
2012-05-07 19:05:58 +00:00
ALLOWED_HOSTS = ['.unglue.it']
2012-05-07 19:05:58 +00:00
DEBUG = False
2016-09-07 22:15:23 +00:00
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
2012-05-07 19:05:58 +00:00
2012-05-07 19:06:59 +00:00
SITE_ID = 5
2012-05-07 19:05:58 +00:00
ADMINS = (
('Raymond Yee', 'rdhyee+ungluebugs@gluejar.com'),
('Eric Hellman', 'eric@gluejar.com'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'unglueit',
'USER': 'root',
'PASSWORD': 'forgetn0t',
'HOST': 'justdb1.cboagmr25pjs.us-east-1.rds.amazonaws.com',
2012-05-07 19:05:58 +00:00
'PORT': '',
'TEST_CHARSET': 'utf8'
2012-05-07 19:05:58 +00:00
}
}
TIME_ZONE = 'America/New_York'
2016-12-20 19:43:16 +00:00
# settings for outbout email
# if you have a gmail account you can use your email address and password
# Amazon SES
EMAIL_BACKEND = 'django_smtp_ssl.SSLEmailBackend'
MAIL_USE_TLS = True
EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com'
EMAIL_PORT = 465
DEFAULT_FROM_EMAIL = 'notices@gluejar.com'
2012-05-07 19:05:58 +00:00
# send celery log to Python logging
CELERYD_HIJACK_ROOT_LOGGER = False
# Next step to try https
#BASE_URL = 'http://just.unglue.it'
2013-09-11 17:43:49 +00:00
BASE_URL_SECURE = 'https://just.unglue.it'
IPN_SECURE_URL = False
2012-05-07 19:05:58 +00:00
# use redis for production queue
BROKER_TRANSPORT = "redis"
BROKER_HOST = "localhost"
BROKER_PORT = 6379
BROKER_VHOST = "0"
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
2016-06-20 19:58:10 +00:00
'formatters': {
'brief': {
'format': '%(asctime)s %(levelname)s %(name)s[%(funcName)s]: %(message)s',
},
},
2012-05-07 19:05:58 +00:00
'handlers': {
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
},
2016-05-11 13:12:42 +00:00
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler',
},
2016-06-20 19:50:57 +00:00
'file': {
'level': 'INFO',
'class': 'logging.handlers.RotatingFileHandler',
2016-06-20 20:50:47 +00:00
'filename': join('/var/log/regluit', 'unglue.it.log'),
2016-06-20 19:50:57 +00:00
'maxBytes': 1024*1024*5, # 5 MB
'backupCount': 5,
'formatter': 'brief',
},
2012-05-07 19:05:58 +00:00
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
2016-05-11 13:12:42 +00:00
'django.security.DisallowedHost': {
'handlers': ['null'],
'propagate': False,
},
'': {
2016-06-20 19:50:57 +00:00
'handlers': ['file'],
'level': 'WARNING',
'propagate': False,
2016-06-20 19:50:57 +00:00
},
2012-05-07 19:05:58 +00:00
}
}
STATIC_ROOT = '/var/www/static'
#CKEDITOR_UPLOAD_PATH = '/var/www/static/media/'
#CKEDITOR_UPLOAD_PREFIX = 'https://just.unglue.it/static/media/'
2012-05-07 19:05:58 +00:00
IS_PREVIEW = False
# decide which of the period tasks to add to the schedule
CELERYBEAT_SCHEDULE['send_test_email'] = SEND_TEST_EMAIL_JOB
2012-05-07 19:05:58 +00:00
CELERYBEAT_SCHEDULE['report_new_ebooks'] = EBOOK_NOTIFICATIONS_JOB
CELERYBEAT_SCHEDULE['update_account_statuses'] = UPDATE_ACCOUNT_STATUSES
CELERYBEAT_SCHEDULE['notify_expiring_accounts'] = NOTIFY_EXPIRING_ACCOUNTS
CELERYBEAT_SCHEDULE['refresh_acqs'] = REFRESH_ACQS_JOB
# set -- sandbox or production Amazon FPS?
AMAZON_FPS_HOST = "fps.sandbox.amazonaws.com"
#AMAZON_FPS_HOST = "fps.amazonaws.com"
2012-05-07 19:05:58 +00:00
# local settings for maintenance mode
2016-09-08 18:42:27 +00:00
MAINTENANCE_MODE = False
2013-02-11 18:47:03 +00:00
# Amazon keys to permit S3 access
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
# https://console.aws.amazon.com/iam/home?region=us-east-1#/users/s3_just
# TO DO: invalidate
# AWS_ACCESS_KEY_ID = 'AKIAIYP6XRVAUWKQFT5Q'
# AWS_SECRET_ACCESS_KEY = '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'
# AWS_STORAGE_BUCKET_NAME = 'just-unglueit'
2012-05-07 19:05:58 +00:00
# if settings/local.py exists, import those settings -- allows for dynamic generation of parameters such as DATABASES
try:
from regluit.settings.local import *
except ImportError:
pass