diff --git a/TsaApi/local_settings_prod.py b/TsaApi/local_settings_prod.py index f339cd91132393103d8c6754e07db27531a291e1..63b3537d36fc15dba19b6d30b7617a179c77323b 100644 --- a/TsaApi/local_settings_prod.py +++ b/TsaApi/local_settings_prod.py @@ -10,7 +10,6 @@ You should have received a copy of the GNU General Public License along with thi # APP_ROOT = '/home/python/TsaAPI/' APP_ROOT = '/var/www/tsaapi.prod.bfa.local/' -STATIC_ROOT = APP_ROOT + 'html/' STATIC_URL = '/tsa/static/' diff --git a/TsaApi/settings.py b/TsaApi/settings.py index 1ad48e3fa4f20e614c78ac9f80a4808d854f79ca..7acbce75df7a0292deab78c21ef793793df04051 100644 --- a/TsaApi/settings.py +++ b/TsaApi/settings.py @@ -160,7 +160,6 @@ REST_FRAMEWORK = { } APP_ROOT = '/var/www/tsaapi.prod.bfa.local/' -LOG_ROOT = APP_ROOT + 'logs/' SENTRY_URL = 'http://2ec54beaab3b4459a1e5afadea070f98:92aee3f5d91e4e66996a3e0792985541@172.17.30.21:9000/54' @@ -185,6 +184,9 @@ try: except ImportError as e: pass +LOG_ROOT = APP_ROOT + 'logs/' +STATIC_ROOT = APP_ROOT + 'html/' + RAVEN_CONFIG = { 'dsn': SENTRY_URL, }