From ada8d875c71af30a49ee2ba05caf6fdc1baa1e89 Mon Sep 17 00:00:00 2001 From: asacramento <sacramentoa@nic.ar> Date: Wed, 13 Mar 2019 12:09:45 -0300 Subject: [PATCH] Correccion de settings --- TsaApi/local_settings_prod.py | 1 - TsaApi/settings.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/TsaApi/local_settings_prod.py b/TsaApi/local_settings_prod.py index f339cd9..63b3537 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 1ad48e3..7acbce7 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, } -- GitLab