SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 62a7bc3b authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Update settings/wsgi files for new production env

parent 42bbdafe
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ from .base import * ...@@ -6,7 +6,7 @@ from .base import *
# THE MAIN THING HERE # THE MAIN THING HERE
DEBUG = False DEBUG = False
# CERTFILE = get_secret("CERTFILE") # CERTFILE = get_secret("CERTFILE")
ALLOWED_HOSTS = ['www.scipost.org', 'scipost.org', '87.247.240.135'] ALLOWED_HOSTS = ['www.scipost.org', 'scipost.org', '87.247.240.135', 'scipost.webfactional.com']
# Static and media # Static and media
STATIC_ROOT = '/home/scipost/webapps/scipost_static/' STATIC_ROOT = '/home/scipost/webapps/scipost_static/'
......
"""
WSGI config for SciPost_v1 project on Production (ip: 87.247.240.135).
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "SciPost_v1.settings.production_2")
application = get_wsgi_application()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment