Statistics
| Branch: | Tag: | Revision:

root / pithos / settings.d / 00-deploy.conf @ 390c7730

History | View | Annotate | Download (740 Bytes)

1
DEBUG = True
2
TEMPLATE_DEBUG = DEBUG
3

    
4
TEST = False
5

    
6
# Bypass authentication for user administration.
7
BYPASS_ADMIN_AUTH = False
8

    
9
ADMINS = (
10
    # ('Your Name', 'your_email@domain.com'),
11
)
12

    
13
MANAGERS = ADMINS
14

    
15
# Make this unique, and don't share it with anybody.
16
SECRET_KEY = '$j0cdrfm*0sc2j+e@@2f-&3-_@2=^!z#+b-8o4_i10@2%ev7si'
17

    
18
# Address to use for outgoing emails
19
DEFAULT_FROM_EMAIL = 'Pithos <no-reply@grnet.gr>'
20
DEFAULT_CONTACT_EMAIL = 'support@pithos.grnet.gr'
21

    
22
FEEDBACK_FROM_EMAIL = DEFAULT_FROM_EMAIL
23
FEEDBACK_CONTACT_EMAIL = DEFAULT_CONTACT_EMAIL
24

    
25
# Use to log to a file.
26
LOGFILE = None
27

    
28
# The server is behind a proxy (apache and gunicorn setup).
29
USE_X_FORWARDED_HOST = False
30

    
31
# Set umask (needed for gunicorn setup).
32
#os.umask(0077)