Answers for "django add host to allowed_hosts"

2

django setup allowed hosts

ALLOWED_HOSTS = ['*']
Posted by: Guest on May-26-2021
0

settings.debug django

# Required Imports
from django.conf.urls.static import static
from django.conf import settings

# Below Urlpatterns
if settings.DEBUG:
	urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
    urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Posted by: Guest on October-29-2020

Code answers related to "django add host to allowed_hosts"

Python Answers by Framework

Browse Popular Code Answers by Language