Created
January 6, 2014 05:55
-
-
Save agustinhaller/8278844 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Parse database configuration from $DATABASE_URL | |
| import dj_database_url | |
| DATABASES['default'] = dj_database_url.config() | |
| # Honor the 'X-Forwarded-Proto' header for request.is_secure() | |
| SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') | |
| # Allow all host headers | |
| ALLOWED_HOSTS = ['*'] | |
| # Static asset configuration | |
| import os | |
| BASE_DIR = os.path.dirname(os.path.abspath(__file__)) | |
| STATIC_ROOT = 'staticfiles' | |
| STATIC_URL = '/static/' | |
| STATICFILES_DIRS = ( | |
| os.path.join(BASE_DIR, 'static'), | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment