From 1ea1d12723370cf19b81d7653491b7e8900a7f32 Mon Sep 17 00:00:00 2001 From: Ivo Branco Date: Fri, 21 Jun 2024 15:46:27 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=B0=EF=B8=8F(setttings)=20remove=20settin?= =?UTF-8?q?g?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `STATIC_FILES_URL_ENABLE` setting doesn't do nothing, removing it from the settings.py file. --- sites/nau/src/backend/nau/settings.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sites/nau/src/backend/nau/settings.py b/sites/nau/src/backend/nau/settings.py index bcca818..609260b 100644 --- a/sites/nau/src/backend/nau/settings.py +++ b/sites/nau/src/backend/nau/settings.py @@ -853,8 +853,3 @@ class Production(Base): MEDIA_HOSTNAME_PRECONNECT = values.BooleanValue( False, environ_name="MEDIA_HOSTNAME_PRECONNECT", environ_prefix=None ) - - # Enable the deliver of the static asset files like css, images, fonts, etc. - # nginx will also deliver this files, but during rolling deploy, the nginx could have one - # version of the files and the app still running a different version. - STATIC_FILES_URL_ENABLE = values.BooleanValue(False)